diff --git a/nightly_tests/conftest.py b/nightly_tests/conftest.py deleted file mode 100644 index f37e0684..00000000 --- a/nightly_tests/conftest.py +++ /dev/null @@ -1,44 +0,0 @@ -import pytest - -# Fixture for initializing an empty list to store test results. Scope is set to 'session' to show across all tests in a session. -@pytest.fixture(scope="session") -def test_results(request): - request.session.results = [] - yield request.session.results - -# A hook implementation to intercept test reports. This function records the name and status of each test when it's called. -@pytest.hookimpl(tryfirst=True, hookwrapper=True) -def pytest_runtest_makereport(item, call): - outcome = yield - result = outcome.get_result() - - # Record the test name and its pass/fail status after each test is executed. - if result.when == 'call': - test_name = item.name - status = 'PASSED' if result.passed else 'FAILED' - item.session.results.append({'name': test_name, 'status': status}) - -# Function executed at the end of the test session. It writes the test results to a file. -def pytest_sessionfinish(session, exitstatus): - with open('makereport_output.txt', 'w') as f: - print_table(session.results, file=f) - -# Function to print the test results in a table format. The output can be directed to a file. -def print_table(results, file=None): - # ASCII symbols for pass and fail - pass_symbol = '✔' - fail_symbol = '✖' - - # Determine the maximum length of test names to format the table properly. - max_name_length = max(len(result['name']) for result in results) - name_width = max(max_name_length, len('Test Name')) - - # Print table headers. - print(f"\n{'Test Name'.ljust(name_width)} | {'Status'}", file=file) - print(f"{'-' * name_width}-+--------", file=file) - - # Print each test result in the table with the respective symbol. - for result in results: - status_symbol = pass_symbol if result['status'] == 'PASSED' else fail_symbol - print(f"{result['name'].ljust(name_width)} | {status_symbol}", file=file) - diff --git a/nightly_tests/delete_old_logs.sh b/nightly_tests/delete_old_logs.sh deleted file mode 100755 index 0477ab5c..00000000 --- a/nightly_tests/delete_old_logs.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -# Directory containing the log directories -LOG_DIR="/home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs" - -# Print current date and time -echo "Current date and time: $(date)" - -# Find and attempt to delete directories older than 2 weeks -find "$LOG_DIR" -mindepth 1 -maxdepth 1 -type d -mtime +7 -exec echo "Deleting directory: {}" \; -exec rm -r {} \; - diff --git a/nightly_tests/deploy.sh b/nightly_tests/deploy.sh deleted file mode 100644 index a53d775c..00000000 --- a/nightly_tests/deploy.sh +++ /dev/null @@ -1,196 +0,0 @@ -#!/bin/bash - -STACK_NAME="" -PROJECT_NAME="" -VENUE_NAME="" -MC_VERSION="latest" -MC_SHA="" -CONFIG_FILE="" - -# Function to display usage instructions -usage() { - echo "Usage: $0 --stack-name --project-name --venue-name [--mc-version ] [--mc-sha ] [--config-file ]" - exit 1 -} - -# -# It's mandatory to specify a valid command arguments -# -# if [[ $# -ne 6 ]]; then -# usage -# fi - -# Parse command line options -while [[ $# -gt 0 ]]; do - case "$1" in - --stack-name) - STACK_NAME="$2" - shift 2 - ;; - --project-name) - PROJECT_NAME="$2" - shift 2 - ;; - --venue-name) - VENUE_NAME="$2" - shift 2 - ;; - --mc-version) - MC_VERSION="$2" - shift 2 - ;; - --mc-sha) - MC_SHA="$2" - shift 2 - ;; - --config-file) - CONFIG_FILE="$2" - shift 2 - ;; - *) - usage - ;; - esac -done - -# Check if mandatory options are provided -if [[ -z $STACK_NAME ]]; then - usage -fi -if [[ -z $PROJECT_NAME ]]; then - usage -fi -if [[ -z $VENUE_NAME ]]; then - usage -fi - -echo "deploy.sh :: STACK_NAME: ${STACK_NAME}" -echo "deploy.sh :: PROJECT_NAME: ${PROJECT_NAME}" -echo "deploy.sh :: VENUE_NAME: ${VENUE_NAME}" -echo "deploy.sh :: MC_SHA: ${MC_SHA}" - -# -# Create the SSM parameters required by this deployment -# -source ./set_deployment_ssm_params.sh --project-name "${PROJECT_NAME}" --venue-name "${VENUE_NAME}" -echo "deploying INSTANCE TYPE: ${MC_INSTANCETYPE_VAL} ..." - -echo "Deploying Cloudformation stack..." >> nightly_output.txt -echo "Deploying Cloudformation stack..." - - -# Function to read and format the config file -format_config_file() { - if [ -f "$1" ]; then - # Read the file and format it as a YAML string, preserving indentation - content=$(sed 's/^//' "$1") - echo "$content" - else - echo "[]" - fi -} - -# Read and format the config file content -config_content=$(format_config_file "$CONFIG_FILE") - -# Output the marketplace items table to both console and nightly_output.txt -{ - echo "-----------------------------------------" - echo "Items that will auto-deploy on bootstrap:" - echo "Marketplace Item | Version" - echo "--------------------------------+--------" - echo "$config_content" | grep -E '^\s*-' | sed -E 's/^\s*-\s*name:\s*(.*)/\1/' | while read -r line; do - name=$(echo "$line" | cut -d' ' -f1) - version=$(echo "$config_content" | grep -A1 "name: $name" | grep 'version:' | sed -E 's/^\s*version:\s*//') - printf "%-31s | %s\n" "$name" "$version" - done -} | tee -a nightly_output.txt - -# Escape any special characters in the config content -escaped_config_content=$(echo "$config_content" | sed 's/"/\\"/g') - - - -# Modify the CloudFormation create-stack command -aws cloudformation create-stack \ - --stack-name ${STACK_NAME} \ - --template-body file://../cloudformation-template/unity-mc.main.template.yaml \ - --capabilities CAPABILITY_IAM \ - --parameters \ - ParameterKey=VPCID,ParameterValue=${VPC_ID_VAL} \ - ParameterKey=PublicSubnetID1,ParameterValue=${PUB_SUBNET_1_VAL} \ - ParameterKey=PublicSubnetID2,ParameterValue=${PUB_SUBNET_2_VAL} \ - ParameterKey=PrivateSubnetID1,ParameterValue=${PRIV_SUBNET_1_VAL} \ - ParameterKey=PrivateSubnetID2,ParameterValue=${PRIV_SUBNET_2_VAL} \ - ParameterKey=InstanceType,ParameterValue=${MC_INSTANCETYPE_VAL} \ - ParameterKey=PrivilegedPolicyName,ParameterValue=${CS_PRIVILEGED_POLICY_NAME_VAL} \ - ParameterKey=GithubToken,ParameterValue=${GITHUB_TOKEN_VAL} \ - ParameterKey=Project,ParameterValue=${PROJECT_NAME} \ - ParameterKey=Venue,ParameterValue=${VENUE_NAME} \ - ParameterKey=MCVersion,ParameterValue=${MC_VERSION} \ - ParameterKey=MCSha,ParameterValue=${MC_SHA} \ - ParameterKey=MarketplaceItems,ParameterValue="${escaped_config_content}" \ - --tags Key=ServiceArea,Value=U-CS - - -echo "Nightly Test in the (TODO FIXME) account" >> nightly_output.txt -echo "STACK_NAME=$STACK_NAME">NIGHTLY.ENV - -#echo"--------------------------------------------------------------------------[PASS]" -echo "Stack Name: [$STACK_NAME]" >> nightly_output.txt -echo "Stack Name: [$STACK_NAME]" - - -## Wait for startup -STACK_STATUS="" - -WAIT_TIME=0 -MAX_WAIT_TIME=2400 -WAIT_BLOCK=20 - -while [ -z "$STACK_STATUS" ] -do - #echo "Checking Stack Creation [${STACK_NAME}] Status after ${WAIT_TIME} seconds..." >> nightly_output.txt - #echo"--------------------------------------------------------------------------[PASS]" - echo "Waiting for Cloudformation Stack..........................................[$WAIT_TIME]" - - aws cloudformation describe-stacks --stack-name ${STACK_NAME} > status.txt - STACK_STATUS=$(cat status.txt |grep '"StackStatus": \"CREATE_COMPLETE\"') - sleep $WAIT_BLOCK - WAIT_TIME=$(($WAIT_BLOCK + $WAIT_TIME)) - if [ "$WAIT_TIME" -gt "$MAX_WAIT_TIME" ] - then - #echo"--------------------------------------------------------------------------[PASS]" - echo "Cloudformation Stack creation exceeded ${MAX_WAIT_TIME} seconds - [FAIL]" >> nightly_output.txt - echo "Cloudformation Stack creation exceeded ${MAX_WAIT_TIME} seconds - [FAIL]" - exit - fi -done - -STACK_STATUS=$(echo "${STACK_STATUS}" |sed 's/^.*: "//' |sed 's/".*//') - -#echo "Final Stack Status: ${STACK_STATUS}" >> nightly_output.txt -#echo "Final Stack Status: ${STACK_STATUS}" - -#echo"--------------------------------------------------------------------------[PASS]" -echo "Stack Status (Final): [$STACK_STATUS]" >> nightly_output.txt -echo "Stack Status (Final): [$STACK_STATUS]" - - -if [ ! -z "$STACK_STATUS" ] -then - #echo"--------------------------------------------------------------------------[PASS]" - echo "Stack Creation Time: [${WAIT_TIME} seconds] - PASS" >> nightly_output.txt - echo "Stack Creation Time: [${WAIT_TIME} seconds] - PASS" -fi - -## This is where some stuff should go - -## Get the information needed to connect to the new instance -#aws ec2 describe-instances --instance-id $INSTANCE_ID > status.txt -#IP_ADDRESS=$(grep PrivateIpAddress status.txt |sed 's/^.*: "//' | sed 's/".*$//' |head -n 1) -#echo "IP_ADDRESS=$IP_ADDRESS">>NIGHTLY.ENV - -#IP_ADDRESS_PUBLIC=$(grep PublicIpAddress status.txt |sed 's/^.*: "//' | sed 's/".*$//' |head -n 1) -#echo "IP_ADDRESS_PUBLIC=$IP_ADDRESS_PUBLIC">>NIGHTLY.ENV - diff --git a/nightly_tests/destroy.sh b/nightly_tests/destroy.sh deleted file mode 100755 index b4413b5e..00000000 --- a/nightly_tests/destroy.sh +++ /dev/null @@ -1,262 +0,0 @@ -#!/usr/bin/bash - -# -PROJECT_NAME="" -VENUE_NAME="" - -# Function to display usage instructions -usage() { - echo "Usage: $0 --project-name --venue-name " - exit 1 -} - -# -# It's mandatory to speciy a valid command arguments -# -if [[ $# -ne 4 ]]; then - usage -fi - -# Parse command line options -while [[ $# -gt 0 ]]; do - case "$1" in - --project-name) - PROJECT_NAME="$2" - shift 2 - ;; - --venue-name) - VENUE_NAME="$2" - shift 2 - ;; - *) - usage - ;; - esac -done - -# Check if mandatory options are provided -if [[ -z $PROJECT_NAME ]]; then - usage -fi -if [[ -z $VENUE_NAME ]]; then - usage -fi - -echo "destroy.sh :: PROJECT_NAME: ${PROJECT_NAME}" -echo "destroy.sh :: VENUE_NAME: ${VENUE_NAME}" - -source NIGHTLY.ENV - - -# Check if Terraform is installed -if command -v terraform &> /dev/null -then - echo "Terraform is already installed." -else - echo "Terraform is not installed. Installing Terraform..." - - - sudo apt-get update && sudo apt-get install -y gnupg software-properties-common curl - - # Install the HashiCorp - wget -O- https://apt.releases.hashicorp.com/gpg | \ - gpg --dearmor | \ - sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg > /dev/null - - # Add the HashiCorp repository - echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] \ - https://apt.releases.hashicorp.com $(lsb_release -cs) main" | \ - sudo tee /etc/apt/sources.list.d/hashicorp.list - - # Update package and install Terraform - sudo apt-get update - sudo apt-get install -y terraform - - echo "Terraform installation completed." -fi - -export STACK_NAME="unity-management-console-${PROJECT_NAME}-${VENUE_NAME}" - -# Check CloudFormation stack status -echo "Checking CloudFormation stack status..." -echo "Checking CloudFormation stack status..." >> nightly_output.txt -INITIAL_STACK_STATUS=$(aws cloudformation describe-stacks --stack-name "${STACK_NAME}" --query 'Stacks[0].StackStatus' --output text 2>/dev/null) - -if [ $? -ne 0 ]; then - echo "Error: Unable to retrieve stack status. The stack ${STACK_NAME} may not exist." - echo "Error: Unable to retrieve stack status. The stack ${STACK_NAME} may not exist." >> nightly_output.txt - - INITIAL_STACK_STATUS="DOES_NOT_EXIST" -fi - -echo "Current stack status: ${INITIAL_STACK_STATUS}" -echo "Current stack status: ${INITIAL_STACK_STATUS}" >> nightly_output.txt - -if [ "${INITIAL_STACK_STATUS}" == "CREATE_COMPLETE" ]; then - # Create namespace directory - NAMESPACE_DIR="name-spaces/${PROJECT_NAME}-${VENUE_NAME}" - mkdir -p "$NAMESPACE_DIR" - cd "$NAMESPACE_DIR" || exit 1 - - # Create Terraform configuration file - CONFIG_FILE="${PROJECT_NAME}-${VENUE_NAME}.tf" - cat < "${CONFIG_FILE}" -terraform { - backend "s3" { - bucket = "unity-${PROJECT_NAME}-${VENUE_NAME}-bucket" - key = "${PROJECT_NAME}-${VENUE_NAME}-tfstate" - region = "us-west-2" - dynamodb_table = "${PROJECT_NAME}-${VENUE_NAME}-terraform-state" - } -} -EOF - - echo "Destroying ${PROJECT_NAME}-${VENUE_NAME} Management Console and AWS resources..." - echo "Destroying ${PROJECT_NAME}-${VENUE_NAME} Management Console and AWS resources..." >> nightly_output.txt - # Start the timer - START_TIME=$(date +%s) - - # Initialize Terraform - echo "Initializing Terraform..." - if ! terraform init -reconfigure; then - echo "Error: Could not initialize Terraform for ${PROJECT_NAME}/${VENUE_NAME}." - echo "Error: Could not initialize Terraform for ${PROJECT_NAME}/${VENUE_NAME}." >> nightly_output.txt - cd - || exit 1 - rm -rf "name-spaces/${PROJECT_NAME}-${VENUE_NAME}" - exit 1 - fi - - # Run Terraform Destroy - echo "Destroying resources..." - if ! terraform destroy -auto-approve; then - echo "Error: Could not delete ${PROJECT_NAME}/${VENUE_NAME} AWS resources." - echo "Error: Could not delete ${PROJECT_NAME}/${VENUE_NAME} AWS resources." >> nightly_output.txt - cd - || exit 1 - rm -rf "name-spaces/${PROJECT_NAME}-${VENUE_NAME}" - exit 1 - fi - - # Delete the DynamoDB table only if the initial stack status was CREATE_COMPLETE - - DYNAMODB_TABLE="${PROJECT_NAME}-${VENUE_NAME}-terraform-state" - echo "Deleting DynamoDB table ${DYNAMODB_TABLE}..." - echo "Deleting DynamoDB table ${DYNAMODB_TABLE}..." >> nightly_output.txt - if ! aws dynamodb delete-table --table-name "${DYNAMODB_TABLE}"; then - echo "Error: Could not delete DynamoDB table ${DYNAMODB_TABLE}." - exit 1 - fi - echo "DynamoDB table ${DYNAMODB_TABLE} was deleted successfully" - echo "DynamoDB table ${DYNAMODB_TABLE} was deleted successfully" >> nightly_output.txt - - # End the timer - END_TIME=$(date +%s) - DURATION=$((END_TIME - START_TIME)) - - # Clean up - cd - || exit 1 - rm -rf "name-spaces/${PROJECT_NAME}-${VENUE_NAME}" - echo "Terraform operations completed. Namespace directory and all Terraform files have been deleted." - echo "Terraform operations completed. Namespace directory and all Terraform files have been deleted." >> nightly_output.txt - echo "MC Teardown: Completed in $DURATION seconds" - echo "MC Teardown: Completed in $DURATION seconds" >> nightly_output.txt -fi - -# Delete CloudFormation stack -echo "Destroying cloudformation stack [${STACK_NAME}]..." -echo "Destroying cloudformation stack [${STACK_NAME}]..." >> nightly_output.txt -aws cloudformation delete-stack --stack-name ${STACK_NAME} - -STACK_STATUS="" -WAIT_TIME=0 -MAX_WAIT_TIME=2400 -WAIT_BLOCK=20 - -while [ -z "$STACK_STATUS" ] -do - echo "Waiting for Cloudformation Stack Termination..............................[$WAIT_TIME]" - echo "Waiting for Cloudformation Stack Termination..............................[$WAIT_TIME]" >> nightly_output.txt - aws cloudformation describe-stacks --stack-name ${STACK_NAME} > status.txt - STACK_STATUS="" - if [ -s status.txt ] - then - STACK_STATUS="" - else - STACK_STATUS="TERMINATED" - fi - sleep $WAIT_BLOCK - WAIT_TIME=$(($WAIT_BLOCK + $WAIT_TIME)) - if [ "$WAIT_TIME" -gt "$MAX_WAIT_TIME" ] - then - echo "" - echo "Stack teardown exceeded ${MAX_WAIT_TIME} seconds - [FAIL]" >> nightly_output.txt - echo "Stack teardown exceeded ${MAX_WAIT_TIME} seconds - [FAIL]" - STACK_STATUS="TIMEOUT" - break - fi -done - -if [ "$STACK_STATUS" == "TERMINATED" ]; then - echo "Stack Teardown: Completed in ${WAIT_TIME}s - [PASS]" >> nightly_output.txt - echo "Stack Teardown: Completed in ${WAIT_TIME}s - [PASS]" -elif [ "$STACK_STATUS" == "TIMEOUT" ]; then - echo "Stack Teardown: Timed out after ${WAIT_TIME}s - [FAIL]" >> nightly_output.txt - echo "Stack Teardown: Timed out after ${WAIT_TIME}s - [FAIL]" -else - echo "Stack Teardown: Failed with unknown status - [FAIL]" >> nightly_output.txt - echo "Stack Teardown: Failed with unknown status - [FAIL]" -fi - -# Before running destroy_deployment_ssm_params.sh, remove Apache config block - -echo "Removing Apache configuration block from S3..." - -# Create temporary file for modified config -TEMP_CONFIG="/tmp/unity-cs.conf" - -# Get environment from SSM -export ENV_SSM_PARAM="/unity/account/venue" -ENVIRONMENT=$(aws ssm get-parameter --name ${ENV_SSM_PARAM} --query "Parameter.Value" --output text) -echo "Environment from SSM: ${ENVIRONMENT}" - -# Use environment in S3 bucket name -S3_BUCKET="ucs-shared-services-apache-config-${ENVIRONMENT}" - -# Download the current config -if ! aws s3 cp s3://${S3_BUCKET}/unity-cs.conf $TEMP_CONFIG; then - echo "Warning: Could not download Apache configuration from S3" - echo "Warning: Could not download Apache configuration from S3" >> nightly_output.txt -else - # Remove the configuration block using sed - START_MARKER="# ---------- BEGIN ${PROJECT_NAME}/${VENUE_NAME} ----------" - END_MARKER="# ---------- END ${PROJECT_NAME}/${VENUE_NAME} ----------" - - # Check if the markers exist in the file - if grep -q "$START_MARKER" "$TEMP_CONFIG" && grep -q "$END_MARKER" "$TEMP_CONFIG"; then - # Escape special characters in the markers - ESCAPED_START=$(echo "$START_MARKER" | sed 's/[]\/$*.^[]/\\&/g') - ESCAPED_END=$(echo "$END_MARKER" | sed 's/[]\/$*.^[]/\\&/g') - - # Use sed to remove everything between and including the markers - sed -i "/$ESCAPED_START/,/$ESCAPED_END/d" $TEMP_CONFIG - - # Upload the modified config back to S3 - if aws s3 cp $TEMP_CONFIG s3://${S3_BUCKET}/unity-cs.conf; then - echo "Successfully removed Apache configuration block from S3" - echo "Successfully removed Apache configuration block from S3" >> nightly_output.txt - else - echo "Warning: Failed to upload modified Apache configuration to S3" - echo "Warning: Failed to upload modified Apache configuration to S3" >> nightly_output.txt - fi - else - echo "No configuration block found for ${PROJECT_NAME}/${VENUE_NAME} - Skipping removal" - echo "No configuration block found for ${PROJECT_NAME}/${VENUE_NAME} - Skipping removal" >> nightly_output.txt - fi - - # Clean up - rm $TEMP_CONFIG -fi - -# Run the destroy_deployment_ssm_params.sh script -echo "Running destroy_deployment_ssm_params.sh script..." -./destroy_deployment_ssm_params.sh --project-name "${PROJECT_NAME}" --venue-name "${VENUE_NAME}" - diff --git a/nightly_tests/destroy_deployment_ssm_params.sh b/nightly_tests/destroy_deployment_ssm_params.sh deleted file mode 100755 index b8d78ef4..00000000 --- a/nightly_tests/destroy_deployment_ssm_params.sh +++ /dev/null @@ -1,95 +0,0 @@ -#!/bin/bash - -# ================================================================= -# This script deletes SSM params that are specific to a deployment -# ================================================================= - -PROJECT_NAME="" -VENUE_NAME="" - -# Function to display usage instructions -usage() { - echo "Usage: $0 --project-name --venue-name " - exit 1 -} - -# -# It's mandatory to speciy a valid command arguments -# -if [[ $# -ne 4 ]]; then - usage -fi - -# Parse command line options -while [[ $# -gt 0 ]]; do - case "$1" in - --project-name) - PROJECT_NAME="$2" - shift 2 - ;; - --venue-name) - VENUE_NAME="$2" - shift 2 - ;; - *) - usage - ;; - esac -done - -# Check if mandatory options are provided -if [[ -z $PROJECT_NAME ]]; then - usage -fi -if [[ -z $VENUE_NAME ]]; then - usage -fi - -echo "destroy_deployment_ssm_params.sh :: PROJECT_NAME: ${PROJECT_NAME}" -echo "destroy_deployment_ssm_params.sh :: VENUE_NAME: ${VENUE_NAME}" - -# -# Sub-routine to gracefully delete a SSM parameter -# -delete_ssm_param() { - local key=$1 - echo "Deleting SSM parameter: ${key} ..." - local lookup=$(aws ssm get-parameter --name "$key" 2>&1) - if [[ "$(echo "${lookup}" | grep -q "ParameterNotFound" && echo no)" == "no" ]]; then - echo "SSM param ${key} not found. Not attempting a delete." - else - aws ssm delete-parameter --name "${key}" || echo "ERROR: SSM delete failed for $key" - fi -} - -# -# Delete SSM: -# /unity/deployment///project-name -# -PROJECT_NAME_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/project-name" -PROJECT_NAME_VAL="${PROJECT_NAME}" -delete_ssm_param "${PROJECT_NAME_SSM}" - -# -# Delete SSM: -# /unity/deployment///venue-name -# -VENUE_NAME_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/venue-name" -VENUE_NAME_VAL="${VENUE_NAME}" -delete_ssm_param "${VENUE_NAME_SSM}" - -# -# Delete SSM: -# /unity/deployment///status -# -DEPLOYMENT_STATUS_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/deployment/status" -DEPLOYMENT_STATUS_VAL="deploying" -delete_ssm_param "${DEPLOYMENT_STATUS_SSM}" - -# Delete SSM: -# /unity/${project}/${venue}/cs/monitoring/s3/bucketName -# -S3_HEALTH_CHECK_NAME_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/cs/monitoring/s3/bucketName" -S3_HEALTH_CHECK_NAME_VAL="${PROJECT_NAME}-${VENUE_NAME}-monitoring-bucket" - -delete_ssm_param "${S3_HEALTH_CHECK_NAME_SSM}" diff --git a/nightly_tests/destroy_ignore_tf.sh b/nightly_tests/destroy_ignore_tf.sh deleted file mode 100755 index 87f32cf8..00000000 --- a/nightly_tests/destroy_ignore_tf.sh +++ /dev/null @@ -1,144 +0,0 @@ -#!/usr/bin/bash - -# -PROJECT_NAME="" -VENUE_NAME="" - -# Function to display usage instructions -usage() { - echo "Usage: $0 --project-name --venue-name " - exit 1 -} - -# -# It's mandatory to speciy a valid command arguments -# -if [[ $# -ne 4 ]]; then - usage -fi - -# Parse command line options -while [[ $# -gt 0 ]]; do - case "$1" in - --project-name) - PROJECT_NAME="$2" - shift 2 - ;; - --venue-name) - VENUE_NAME="$2" - shift 2 - ;; - *) - usage - ;; - esac -done - -# Check if mandatory options are provided -if [[ -z $PROJECT_NAME ]]; then - usage -fi -if [[ -z $VENUE_NAME ]]; then - usage -fi - -echo "destroy.sh :: PROJECT_NAME: ${PROJECT_NAME}" -echo "destroy.sh :: VENUE_NAME: ${VENUE_NAME}" - -source NIGHTLY.ENV - - -# Check if Terraform is installed -if command -v terraform &> /dev/null -then - echo "Terraform is already installed." -else - echo "Terraform is not installed. Installing Terraform..." - - - sudo apt-get update && sudo apt-get install -y gnupg software-properties-common curl - - # Install the HashiCorp - wget -O- https://apt.releases.hashicorp.com/gpg | \ - gpg --dearmor | \ - sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg > /dev/null - - # Add the HashiCorp repository - echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] \ - https://apt.releases.hashicorp.com $(lsb_release -cs) main" | \ - sudo tee /etc/apt/sources.list.d/hashicorp.list - - # Update package and install Terraform - sudo apt-get update - sudo apt-get install -y terraform - - echo "Terraform installation completed." -fi - -export STACK_NAME="unity-management-console-${PROJECT_NAME}-${VENUE_NAME}" - -# Check CloudFormation stack status -echo "Checking CloudFormation stack status..." -echo "Checking CloudFormation stack status..." >> nightly_output.txt -INITIAL_STACK_STATUS=$(aws cloudformation describe-stacks --stack-name "${STACK_NAME}" --query 'Stacks[0].StackStatus' --output text 2>/dev/null) - -if [ $? -ne 0 ]; then - echo "Error: Unable to retrieve stack status. The stack ${STACK_NAME} may not exist." - echo "Error: Unable to retrieve stack status. The stack ${STACK_NAME} may not exist." >> nightly_output.txt - - INITIAL_STACK_STATUS="DOES_NOT_EXIST" -fi - -echo "Current stack status: ${INITIAL_STACK_STATUS}" -echo "Current stack status: ${INITIAL_STACK_STATUS}" >> nightly_output.txt - - -# Delete CloudFormation stack -echo "Destroying cloudformation stack..." -echo "Destroying cloudformation stack..." >> nightly_output.txt -aws cloudformation delete-stack --stack-name ${STACK_NAME} - -STACK_STATUS="" -WAIT_TIME=0 -MAX_WAIT_TIME=2400 -WAIT_BLOCK=20 - -while [ -z "$STACK_STATUS" ] -do - echo "Waiting for Cloudformation Stack Termination..............................[$WAIT_TIME]" - echo "Waiting for Cloudformation Stack Termination..............................[$WAIT_TIME]" >> nightly_output.txt - aws cloudformation describe-stacks --stack-name ${STACK_NAME} > status.txt - STACK_STATUS="" - if [ -s status.txt ] - then - STACK_STATUS="" - else - STACK_STATUS="TERMINATED" - fi - sleep $WAIT_BLOCK - WAIT_TIME=$(($WAIT_BLOCK + $WAIT_TIME)) - if [ "$WAIT_TIME" -gt "$MAX_WAIT_TIME" ] - then - echo "" - echo "Stack teardown exceeded ${MAX_WAIT_TIME} seconds - [FAIL]" >> nightly_output.txt - echo "Stack teardown exceeded ${MAX_WAIT_TIME} seconds - [FAIL]" - STACK_STATUS="TIMEOUT" - break - fi -done - -if [ "$STACK_STATUS" == "TERMINATED" ]; then - echo "Stack Teardown: Completed in ${WAIT_TIME}s - [PASS]" >> nightly_output.txt - echo "Stack Teardown: Completed in ${WAIT_TIME}s - [PASS]" -elif [ "$STACK_STATUS" == "TIMEOUT" ]; then - echo "Stack Teardown: Timed out after ${WAIT_TIME}s - [FAIL]" >> nightly_output.txt - echo "Stack Teardown: Timed out after ${WAIT_TIME}s - [FAIL]" -else - echo "Stack Teardown: Failed with unknown status - [FAIL]" >> nightly_output.txt - echo "Stack Teardown: Failed with unknown status - [FAIL]" -fi - -# Run the destroy_deployment_ssm_params.sh script -echo "Running destroy_deployment_ssm_params.sh script..." -./destroy_deployment_ssm_params.sh --project-name "${PROJECT_NAME}" --venue-name "${VENUE_NAME}" - diff --git a/nightly_tests/get_subnet_list_json.sh b/nightly_tests/get_subnet_list_json.sh deleted file mode 100755 index 8ec4a3e4..00000000 --- a/nightly_tests/get_subnet_list_json.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -# Use AWS CLI to get the VPC ID -vpc_id=$(aws ec2 describe-vpcs --query "Vpcs[0].VpcId" --output text) - -# Use AWS CLI to get the IDs of the first two public subnets -public_subnet_ids=$(aws ec2 describe-subnets --filters Name=vpc-id,Values=$vpc_id Name=map-public-ip-on-launch,Values=true --query "Subnets[0:4].SubnetId" --output text) - -#echo "PUB SUBNETS: ${public_subnet_ids}" - -# Use AWS CLI to get the IDs of the first two private subnets -private_subnet_ids=$(aws ec2 describe-subnets --filters Name=vpc-id,Values=$vpc_id Name=map-public-ip-on-launch,Values=false --query "Subnets[0:4].SubnetId" --output text) - -#echo "PRIV SUBNETS: ${private_subnet_ids}" - -# Assign subnet IDs to variables -PUB_SUBNET_1=$(echo $public_subnet_ids | awk '{print $1}') -PUB_SUBNET_2=$(echo $public_subnet_ids | awk '{print $2}') -PRIV_SUBNET_1=$(echo $private_subnet_ids | awk '{print $1}') -PRIV_SUBNET_2=$(echo $private_subnet_ids | awk '{print $2}') - -# Print out the results -#echo "Public Subnet 1: $PUB_SUBNET_1" -#echo "Public Subnet 2: $PUB_SUBNET_2" -#echo "Private Subnet 1: $PRIV_SUBNET_1" -#echo "Private Subnet 2: $PRIV_SUBNET_2" - -echo "{ \"public\": [\"${PUB_SUBNET_1}\", \"${PUB_SUBNET_2}\"], \"private\": [\"${PRIV_SUBNET_1}\", \"${PRIV_SUBNET_2}\"] }" diff --git a/nightly_tests/marketplace_config.yaml b/nightly_tests/marketplace_config.yaml deleted file mode 100644 index 1e2ca459..00000000 --- a/nightly_tests/marketplace_config.yaml +++ /dev/null @@ -1,9 +0,0 @@ -MarketplaceItems: - - name: unity-cs-monitoring-lambda - version: 0.1 - - name: unity-apigateway - version: 0.4 - - name: unity-proxy - version: 0.14 - - name: unity-ui - version: 0.8.0 diff --git a/nightly_tests/nightly_logs/log_2025-01-08_18-00/nightly_output_2025-01-08_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-08_18-00/nightly_output_2025-01-08_18-00.txt deleted file mode 100644 index d98943d5..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-08_18-00/nightly_output_2025-01-08_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [ab5cf22] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-300145730.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-300145730.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-300145730.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-300145730.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c4b37f34a -E #1 0x562c4ae956e0 -E #2 0x562c4aee43e6 -E #3 0x562c4aee4681 -E #4 0x562c4af29b04 -E #5 0x562c4af0848d -E #6 0x562c4af26ed7 -E #7 0x562c4af08203 -E #8 0x562c4aed6cc0 -E #9 0x562c4aed7c9e -E #10 0x562c4b34cd3b -E #11 0x562c4b350cc2 -E #12 0x562c4b339b6c -E #13 0x562c4b351837 -E #14 0x562c4b31f10f -E #15 0x562c4b36e5a8 -E #16 0x562c4b36e770 -E #17 0x562c4b37e1c6 -E #18 0x7febf4414a94 -E #19 0x7febf44a1a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c4b37f34a -E #1 0x562c4ae956e0 -E #2 0x562c4aee43e6 -E #3 0x562c4aee4681 -E #4 0x562c4af29b04 -E #5 0x562c4af0848d -E #6 0x562c4af26ed7 -E #7 0x562c4af08203 -E #8 0x562c4aed6cc0 -E #9 0x562c4aed7c9e -E #10 0x562c4b34cd3b -E #11 0x562c4b350cc2 -E #12 0x562c4b339b6c -E #13 0x562c4b351837 -E #14 0x562c4b31f10f -E #15 0x562c4b36e5a8 -E #16 0x562c4b36e770 -E #17 0x562c4b37e1c6 -E #18 0x7febf4414a94 -E #19 0x7febf44a1a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c4b37f34a -E #1 0x562c4ae956e0 -E #2 0x562c4aee43e6 -E #3 0x562c4aee4681 -E #4 0x562c4af29b04 -E #5 0x562c4af0848d -E #6 0x562c4af26ed7 -E #7 0x562c4af08203 -E #8 0x562c4aed6cc0 -E #9 0x562c4aed7c9e -E #10 0x562c4b34cd3b -E #11 0x562c4b350cc2 -E #12 0x562c4b339b6c -E #13 0x562c4b351837 -E #14 0x562c4b31f10f -E #15 0x562c4b36e5a8 -E #16 0x562c4b36e770 -E #17 0x562c4b37e1c6 -E #18 0x7febf4414a94 -E #19 0x7febf44a1a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 119.63s (0:01:59) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-08_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-08_18-00/output.log deleted file mode 100644 index 2fca9d9a..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-08_18-00/output.log +++ /dev/null @@ -1,3126 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] -Hit:4 https://download.docker.com/linux/ubuntu focal InRelease -Get:5 https://apt.releases.hashicorp.com focal InRelease [12.9 kB] -Ign:6 https://apt.vector.dev stable InRelease -Get:7 https://apt.vector.dev stable Release [26.0 kB] -Get:8 https://apt.vector.dev stable Release.gpg [801 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:10 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:12 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:13 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3742 kB] -Get:15 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [571 kB] -Get:16 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [3504 kB] -Get:17 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [490 kB] -Get:18 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1253 kB] -Get:19 https://apt.releases.hashicorp.com focal/main amd64 Packages [163 kB] -Get:20 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] -Get:21 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3364 kB] -Get:22 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [491 kB] -Get:23 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [3356 kB] -Get:24 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [470 kB] -Get:25 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1031 kB] -Fetched 18.9 MB in 20s (942 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [ab5cf22] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-06_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/a7f81bc0-ce2d-11ef-a7fc-023ea157d2c5" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Waiting for Cloudformation Stack..........................................[340] -Waiting for Cloudformation Stack..........................................[360] -Waiting for Cloudformation Stack..........................................[380] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-300145730.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 19.2 KiB/19.2 KiB (339.4 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 20.2 KiB/20.2 KiB (229.9 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -51609b3a85b2: Waiting -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -dfdf3fefdca7: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -2bd15bbb2a60: Pull complete -9a128b13f9b1: Pull complete -181410dbbb3c: Pull complete -aee6dd6c6c6c: Pull complete -da6d2e56f44d: Pull complete -a21cc67e5ca6: Pull complete -51609b3a85b2: Pull complete -e57bde81af92: Pull complete -062afa674fc9: Pull complete -399fe729a9db: Pull complete -d8733e6f38f7: Pull complete -failed to register layer: write /usr/lib/x86_64-linux-gnu/libicudata.so.74.2: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1301 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1812 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -fa4ca8a05b9cf8b3256f3226dc5a13d6ae13acdf75b34c7d4c3e89e7c884cc50 -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Wed Jan 8 18:32:19 PST 2025 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2024-12-31_18-00 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2024-12-30_18-00 -Pushing test results to nightly_logs/log_2025-01-08_18-00... -[main 4732d8d] Add nightly output for 2025-01-08_18-00 - 7 files changed, 1087 insertions(+), 4457 deletions(-) - delete mode 100644 nightly_tests/nightly_logs/log_2024-12-30_18-00/nightly_output_2024-12-30_18-00.txt - delete mode 100644 nightly_tests/nightly_logs/log_2024-12-30_18-00/output.log - delete mode 100644 nightly_tests/nightly_logs/log_2024-12-31_18-00/output.log - create mode 100644 nightly_tests/nightly_logs/log_2025-01-07_18-00/output.log - rename nightly_tests/nightly_logs/{log_2024-12-31_18-00/nightly_output_2024-12-31_18-00.txt => log_2025-01-08_18-00/nightly_output_2025-01-08_18-00.txt} (62%) - create mode 100644 nightly_tests/nightly_logs/log_2025-01-08_18-00/output.log -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-08_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - ab5cf22..4732d8d main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: CREATE_COMPLETE -Destroying unity-nightly Management Console and AWS resources... -Initializing Terraform... -Initializing the backend... - -Successfully configured the backend "s3"! Terraform will automatically -use this backend unless the backend configuration changes. -Initializing provider plugins... -- Finding latest version of hashicorp/aws... -- Finding latest version of hashicorp/null... -- Installing hashicorp/aws v5.82.2... -- Installed hashicorp/aws v5.82.2 (signed by HashiCorp) -- Installing hashicorp/null v3.2.3... -- Installed hashicorp/null v3.2.3 (signed by HashiCorp) -Terraform has created a lock file .terraform.lock.hcl to record the provider -selections it made above. Include this file in your version control repository -so that Terraform can guarantee to make the same selections by default when -you run "terraform init" in the future. - -Terraform has been successfully initialized! - -You may now begin working with Terraform. Try running "terraform plan" to see -any changes that are required for your infrastructure. All Terraform commands -should now work. - -If you ever set or change modules or backend configuration for Terraform, -rerun this command to reinitialize your working directory. If you forget, other -commands will detect it and remind you to do so if necessary. -Destroying resources... -module.default-unity-apigateway-iAwhF.null_resource.download_lambda_zip: Refreshing state... [id=8168600298821204220] -module.default-unity-cs-monitoring-lambda-COvFg.null_resource.download_lambda_zip: Refreshing state... [id=4617288372268172437] -module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_ecs_stop_task_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-apigateway-iAwhF.aws_api_gateway_authorizer.unity_cs_common_authorizer: Refreshing state... [id=oyt9ma] -module.default-unity-proxy-JaBnF.aws_security_group.ecs_sg: Refreshing state... [id=sg-04ca7c35917932841] -module.default-unity-apigateway-iAwhF.aws_lambda_function.cs_common_lambda_auth: Refreshing state... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_policy.lambda_ssm_s3_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-apigateway-iAwhF.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-tqr82zu7f2-eg7bjp-GET-200] -module.default-unity-ui-xGgOh.aws_lb.main: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/be848efd0516a327] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Refreshing state... [id=sg-02d5dd2cb0992e786] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.lambda_function_name: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-ui-xGgOh.aws_alb_target_group.app: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3] -module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Refreshing state... [id=feoa6j] -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_management_path: Refreshing state... [id=e6yro3] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration_response.api_gateway_integration_response: Refreshing state... [id=agir-tqr82zu7f2-eg7bjp-GET-200] -module.default-unity-apigateway-iAwhF.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Refreshing state... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role.lambda_execution_role: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-proxy-JaBnF.aws_security_group.ecs_alb_sg: Refreshing state... [id=sg-0b967f3f1ecb891fe] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_closevirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-apigateway-iAwhF.aws_api_gateway_method.root_level_options_method: Refreshing state... [id=agm-tqr82zu7f2-5byelr93x4-OPTIONS] -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_uri: Refreshing state... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.root_level_get_method_mock_integration: Refreshing state... [id=agi-tqr82zu7f2-5byelr93x4-OPTIONS] -module.default-unity-ui-xGgOh.aws_lambda_invocation.proxy_lambda_invocation: Refreshing state... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Refreshing state... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-proxy-JaBnF.aws_iam_role.ecs_execution_role: Refreshing state... [id=unity-nightlyecs_execution_role] -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_health_checks_path: Refreshing state... [id=eg7bjp] -module.default-unity-apigateway-iAwhF.aws_iam_role.iam_for_lambda_auth: Refreshing state... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-proxy-JaBnF.aws_ecs_cluster.httpd_cluster: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250109020859831200000003] -module.default-unity-ui-xGgOh.aws_ecs_task_definition.app: Refreshing state... [id=unity-nightly-ui-app] -module.default-unity-proxy-JaBnF.aws_lambda_function.httpdlambda: Refreshing state... [id=unity-nightly-httpdproxymanagement] -module.default-unity-ui-xGgOh.aws_ssm_parameter.uiux_ui_proxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-JaBnF.aws_lb_target_group.httpd_tg: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86] -module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_rule.every_five_minutes: Refreshing state... [id=unity-nightly-every_five_minutes] -module.default-unity-ui-xGgOh.aws_ecs_cluster.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-proxy-JaBnF.aws_iam_role.lambda_iam_role: Refreshing state... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250109020859828600000002] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Refreshing state... [id=sgr-0b72946dda044d1ea] -module.default-unity-proxy-JaBnF.aws_ecs_task_definition.httpd: Refreshing state... [id=httpd] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.invoke_role_arn: Refreshing state... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.mgmt_endpoint: Refreshing state... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-apigateway-iAwhF.aws_api_gateway_method.rest_api_method_for_health_check_method: Refreshing state... [id=agm-tqr82zu7f2-eg7bjp-GET] -module.default-unity-apigateway-iAwhF.aws_api_gateway_rest_api.rest_api: Refreshing state... [id=tqr82zu7f2] -module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_permission.allow_eventbridge: Refreshing state... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_openvirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-apigateway-iAwhF.aws_api_gateway_deployment.api-gateway-deployment: Refreshing state... [id=fme1hf] -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250109021629866000000001] -module.default-unity-ui-xGgOh.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-ui-xGgOh.aws_alb_listener.front_end: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/be848efd0516a327/c85771688849d56c] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250109020859813000000001] -module.default-unity-proxy-JaBnF.aws_iam_role.ecs_task_role: Refreshing state... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Refreshing state... [id=sgr-08dfbaf1ea0cd3a14] -module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_target.invoke_lambda: Refreshing state... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-JaBnF.aws_lb_listener.httpd_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/7e05e0322c303a83/6be5adc3b4c5e533] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.management_console_url: Refreshing state... [id=/unity/unity/nightly/component/management-console] -module.default-unity-ui-xGgOh.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role-20250109022559821700000001] -module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_function.unity_cs_monitoring_lambda: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_vpc_access_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Refreshing state... [id=sgr-0ecddd07241d829ab] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.rest_api_integration_for_health_check: Refreshing state... [id=agi-tqr82zu7f2-eg7bjp-GET] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_execution_role_policy: Refreshing state... [id=unity-nightlyecs_execution_role-20250109020859875700000004] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Refreshing state... [id=sgr-0ea27518d71eaf516] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Refreshing state... [id=unity-nightly-ecs_task_role-20250109020859899500000005] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Refreshing state... [id=sgr-0e711ec4b3ad49b32] -module.default-unity-apigateway-iAwhF.aws_api_gateway_stage.api_gateway_stage: Refreshing state... [id=ags-tqr82zu7f2-default] -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_api_path: Refreshing state... [id=ko4fat] -module.default-unity-proxy-JaBnF.aws_cloudwatch_log_group.proxyloggroup: Refreshing state... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-JaBnF.aws_lb.httpd_alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/7e05e0322c303a83] -module.default-unity-ui-xGgOh.aws_security_group.ecs_sg: Refreshing state... [id=sg-01f95e21f0a9bf026] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_authorizer.unity_cs_common_authorizer will be destroyed - - resource "aws_api_gateway_authorizer" "unity_cs_common_authorizer" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/tqr82zu7f2/authorizers/oyt9ma" -> null - - authorizer_credentials = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - authorizer_result_ttl_in_seconds = 0 -> null - - authorizer_uri = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - id = "oyt9ma" -> null - - identity_source = "method.request.header.Authorization" -> null - - name = "Unity_CS_Common_Authorizer" -> null - - provider_arns = [] -> null - - rest_api_id = "tqr82zu7f2" -> null - - type = "TOKEN" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_deployment.api-gateway-deployment will be destroyed - - resource "aws_api_gateway_deployment" "api-gateway-deployment" { - - created_date = "2025-01-09T02:24:43Z" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:tqr82zu7f2/dev" -> null - - id = "fme1hf" -> null - - invoke_url = "https://tqr82zu7f2.execute-api.us-west-2.amazonaws.com/dev" -> null - - rest_api_id = "tqr82zu7f2" -> null - - stage_name = "dev" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.rest_api_integration_for_health_check will be destroyed - - resource "aws_api_gateway_integration" "rest_api_integration_for_health_check" { - - cache_key_parameters = [] -> null - - cache_namespace = "eg7bjp" -> null - - connection_id = "feoa6j" -> null - - connection_type = "VPC_LINK" -> null - - content_handling = "CONVERT_TO_TEXT" -> null - - http_method = "GET" -> null - - id = "agi-tqr82zu7f2-eg7bjp-GET" -> null - - integration_http_method = "GET" -> null - - passthrough_behavior = "WHEN_NO_TEMPLATES" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "eg7bjp" -> null - - rest_api_id = "tqr82zu7f2" -> null - - timeout_milliseconds = 29000 -> null - - type = "HTTP" -> null - - uri = "http://unity-mc-nlb-unity-nightly-48e1c217cdb27798.elb.us-west-2.amazonaws.com:8080/api/health_checks" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.root_level_get_method_mock_integration will be destroyed - - resource "aws_api_gateway_integration" "root_level_get_method_mock_integration" { - - cache_key_parameters = [] -> null - - cache_namespace = "5byelr93x4" -> null - - connection_type = "INTERNET" -> null - - http_method = "OPTIONS" -> null - - id = "agi-tqr82zu7f2-5byelr93x4-OPTIONS" -> null - - passthrough_behavior = "WHEN_NO_MATCH" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "5byelr93x4" -> null - - rest_api_id = "tqr82zu7f2" -> null - - timeout_milliseconds = 29000 -> null - - type = "MOCK" -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_integration_response.api_gateway_integration_response will be destroyed - - resource "aws_api_gateway_integration_response" "api_gateway_integration_response" { - - http_method = "GET" -> null - - id = "agir-tqr82zu7f2-eg7bjp-GET-200" -> null - - resource_id = "eg7bjp" -> null - - response_parameters = {} -> null - - response_templates = {} -> null - - rest_api_id = "tqr82zu7f2" -> null - - status_code = "200" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_method.rest_api_method_for_health_check_method will be destroyed - - resource "aws_api_gateway_method" "rest_api_method_for_health_check_method" { - - api_key_required = false -> null - - authorization = "CUSTOM" -> null - - authorization_scopes = [] -> null - - authorizer_id = "oyt9ma" -> null - - http_method = "GET" -> null - - id = "agm-tqr82zu7f2-eg7bjp-GET" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "eg7bjp" -> null - - rest_api_id = "tqr82zu7f2" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_method.root_level_options_method will be destroyed - - resource "aws_api_gateway_method" "root_level_options_method" { - - api_key_required = false -> null - - authorization = "NONE" -> null - - authorization_scopes = [] -> null - - http_method = "OPTIONS" -> null - - id = "agm-tqr82zu7f2-5byelr93x4-OPTIONS" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "5byelr93x4" -> null - - rest_api_id = "tqr82zu7f2" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_method_response.response_200 will be destroyed - - resource "aws_api_gateway_method_response" "response_200" { - - http_method = "GET" -> null - - id = "agmr-tqr82zu7f2-eg7bjp-GET-200" -> null - - resource_id = "eg7bjp" -> null - - response_models = {} -> null - - response_parameters = {} -> null - - rest_api_id = "tqr82zu7f2" -> null - - status_code = "200" -> null - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_api_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_api_path" { - - id = "ko4fat" -> null - - parent_id = "e6yro3" -> null - - path = "/management/api" -> null - - path_part = "api" -> null - - rest_api_id = "tqr82zu7f2" -> null - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_health_checks_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_health_checks_path" { - - id = "eg7bjp" -> null - - parent_id = "ko4fat" -> null - - path = "/management/api/health_checks" -> null - - path_part = "health_checks" -> null - - rest_api_id = "tqr82zu7f2" -> null - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_management_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_management_path" { - - id = "e6yro3" -> null - - parent_id = "5byelr93x4" -> null - - path = "/management" -> null - - path_part = "management" -> null - - rest_api_id = "tqr82zu7f2" -> null - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_rest_api.rest_api will be destroyed - - resource "aws_api_gateway_rest_api" "rest_api" { - - api_key_source = "HEADER" -> null - - arn = "arn:aws:apigateway:us-west-2::/restapis/tqr82zu7f2" -> null - - binary_media_types = [] -> null - - created_date = "2025-01-09T02:18:02Z" -> null - - description = "Unity unity-nightly Project REST API Gateway" -> null - - disable_execute_api_endpoint = false -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:tqr82zu7f2" -> null - - id = "tqr82zu7f2" -> null - - name = "unity-unity-nightly-rest-api-gateway" -> null - - root_resource_id = "5byelr93x4" -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - - - endpoint_configuration { - - types = [ - - "REGIONAL", - ] -> null - - vpc_endpoint_ids = [] -> null - } - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_stage.api_gateway_stage will be destroyed - - resource "aws_api_gateway_stage" "api_gateway_stage" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/tqr82zu7f2/stages/default" -> null - - cache_cluster_enabled = false -> null - - deployment_id = "fme1hf" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:tqr82zu7f2/default" -> null - - id = "ags-tqr82zu7f2-default" -> null - - invoke_url = "https://tqr82zu7f2.execute-api.us-west-2.amazonaws.com/default" -> null - - rest_api_id = "tqr82zu7f2" -> null - - stage_name = "default" -> null - - tags = {} -> null - - tags_all = {} -> null - - variables = {} -> null - - xray_tracing_enabled = false -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link will be destroyed - - resource "aws_api_gateway_vpc_link" "rest_api_health_check_vpc_link" { - - arn = "arn:aws:apigateway:us-west-2::/vpclinks/feoa6j" -> null - - description = "mc-nlb-vpc-link-unity-nightly" -> null - - id = "feoa6j" -> null - - name = "mc-nlb-vpc-link-unity-nightly" -> null - - tags = {} -> null - - tags_all = {} -> null - - target_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/net/unity-mc-nlb-unity-nightly/48e1c217cdb27798", - ] -> null - } - - # module.default-unity-apigateway-iAwhF.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group will be destroyed - - resource "aws_cloudwatch_log_group" "cs_common_lambda_auth_log_group" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - id = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - log_group_class = "STANDARD" -> null - - name = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - retention_in_days = 14 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_iam_role.iam_for_lambda_auth will be destroyed - - resource "aws_iam_role" "iam_for_lambda_auth" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = [ - - "lambda.amazonaws.com", - - "apigateway.amazonaws.com", - ] - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-09T02:18:02Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-iam_for_lambda_auth" -> null - - managed_policy_arns = [] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-iam_for_lambda_auth" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFCFNEILETC" -> null - # (2 unchanged attributes hidden) - - - inline_policy { - - name = "unity-cs-lambda-auth-inline-policy" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "logs:PutLogEvents", - - "logs:CreateLogStream", - - "logs:CreateLogGroup", - - "lambda:InvokeFunction", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - } - } - - # module.default-unity-apigateway-iAwhF.aws_lambda_function.cs_common_lambda_auth will be destroyed - - resource "aws_lambda_function" "cs_common_lambda_auth" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer" -> null - - code_sha256 = "Bumcg++RUB+axI/ppSM5bFNknf8Jlc+l4e1pAQrYm98=" -> null - - filename = "ucs-common-lambda-auth.zip" -> null - - function_name = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - handler = "index.handler" -> null - - id = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - last_modified = "2025-01-09T02:18:11.810+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - runtime = "nodejs20.x" -> null - - skip_destroy = false -> null - - source_code_size = 212744 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "COGNITO_CLIENT_ID_LIST" = "deprecated" - - "COGNITO_GROUPS_ALLOWED" = (sensitive value) - - "COGNITO_USER_POOL_ID" = (sensitive value) - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_rest_api_id_parameter will be destroyed - - resource "aws_ssm_parameter" "api_gateway_rest_api_id_parameter" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - name = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_uri will be destroyed - - resource "aws_ssm_parameter" "api_gateway_uri" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/management/api-gateway/gateway-uri" -> null - - data_type = "text" -> null - - id = "/unity/cs/management/api-gateway/gateway-uri" -> null - - name = "/unity/cs/management/api-gateway/gateway-uri" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.aws_ssm_parameter.invoke_role_arn will be destroyed - - resource "aws_ssm_parameter" "invoke_role_arn" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - name = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-iAwhF.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "8168600298821204220" -> null - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_rule.every_five_minutes will be destroyed - - resource "aws_cloudwatch_event_rule" "every_five_minutes" { - - arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes" -> null - - is_enabled = true -> null - - name = "unity-nightly-every_five_minutes" -> null - - schedule_expression = "rate(5 minutes)" -> null - - state = "ENABLED" -> null - - tags = {} -> null - - tags_all = {} -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_target.invoke_lambda will be destroyed - - resource "aws_cloudwatch_event_target" "invoke_lambda" { - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes-invoke_lambda_function" -> null - - rule = "unity-nightly-every_five_minutes" -> null - - target_id = "invoke_lambda_function" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_policy.lambda_ssm_s3_policy will be destroyed - - resource "aws_iam_policy" "lambda_ssm_s3_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - attachment_count = 1 -> null - - description = "Policy to allow Lambda to read/write SSM and send objects to S3" -> null - - id = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ssm:GetParameter", - - "ssm:GetParameters", - - "ssm:PutParameter", - - "ssm:DescribeParameters", - ] - - Effect = "Allow" - - Resource = "*" - }, - - { - - Action = [ - - "s3:PutObject", - - "s3:GetObject", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFINNZDFWTR" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role.lambda_execution_role will be destroyed - - resource "aws_iam_role" "lambda_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-09T02:16:29Z" -> null - - force_detach_policies = false -> null - - id = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFCAGBKYZNA" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role_policy_attachment.attach_ssm_s3_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "attach_ssm_s3_policy" { - - id = "unity-unity-nightly-cs-monitoring-lambda-role-20250109021629866000000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - role = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_function.unity_cs_monitoring_lambda will be destroyed - - resource "aws_lambda_function" "unity_cs_monitoring_lambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - code_sha256 = "o4yFvQ976RHf3G1ExiEJg2pTNaiWfKNl9n5QvhIBvxc=" -> null - - filename = ".terraform/modules/default-unity-cs-monitoring-lambda-COvFg/unity-cs-monitoring-lambda.zip" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - handler = "lambda_function.lambda_handler" -> null - - id = "unity-unity-nightly-cs-monitoring-lambda" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda/invocations" -> null - - last_modified = "2025-01-09T02:16:38.499+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - runtime = "python3.12" -> null - - skip_destroy = false -> null - - source_code_size = 15016734 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 300 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "PROJECT" = "unity" - - "VENUE" = "nightly" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-unity-nightly-cs-monitoring-lambda" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_permission.allow_eventbridge will be destroyed - - resource "aws_lambda_permission" "allow_eventbridge" { - - action = "lambda:InvokeFunction" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - id = "AllowExecutionFromEventBridge" -> null - - principal = "events.amazonaws.com" -> null - - source_arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - statement_id = "AllowExecutionFromEventBridge" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-COvFg.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "4617288372268172437" -> null - } - - # module.default-unity-proxy-JaBnF.aws_cloudwatch_log_group.proxyloggroup will be destroyed - - resource "aws_cloudwatch_log_group" "proxyloggroup" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/ecs/unity-nightly-managementproxy" -> null - - id = "/ecs/unity-nightly-managementproxy" -> null - - log_group_class = "STANDARD" -> null - - name = "/ecs/unity-nightly-managementproxy" -> null - - retention_in_days = 0 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ecs_cluster.httpd_cluster will be destroyed - - resource "aws_ecs_cluster" "httpd_cluster" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - name = "unity-nightly-httpd-cluster" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service will be destroyed - - resource "aws_ecs_service" "httpd_service" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 1 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service" -> null - - launch_type = "FARGATE" -> null - - name = "httpd-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:340" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "unity-nightly-httpd-task" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-04ca7c35917932841", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-proxy-JaBnF.aws_ecs_task_definition.httpd will be destroyed - - resource "aws_ecs_task_definition" "httpd" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:340" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd" -> null - - container_definitions = jsonencode( - [ - - { - - environment = [ - - { - - name = "UNITY_PROJECT" - - value = "unity" - }, - - { - - name = "UNITY_VENUE" - - value = "nightly" - }, - ] - - essential = true - - image = "ghcr.io/unity-sds/unity-proxy/httpd-proxy:0.16.0" - - logConfiguration = { - - logDriver = "awslogs" - - options = { - - awslogs-group = "/ecs/unity-nightly-managementproxy" - - awslogs-region = "us-west-2" - - awslogs-stream-prefix = "ecs" - } - } - - mountPoints = [] - - name = "unity-nightly-httpd-task" - - portMappings = [ - - { - - containerPort = 8080 - - hostPort = 8080 - - protocol = "tcp" - }, - ] - - systemControls = [] - - volumesFrom = [] - }, - ] - ) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - family = "httpd" -> null - - id = "httpd" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 340 -> null - - skip_destroy = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - track_latest = false -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_ecs_stop_task_policy will be destroyed - - resource "aws_iam_policy" "lambda_ecs_stop_task_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to stop ECS tasks" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - name = "unity-nightly-lambda_ecs_stop_task_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ecs:ListTasks", - - "ecs:StopTask", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFO2FPNGIFA" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_vpc_access_policy will be destroyed - - resource "aws_iam_policy" "lambda_vpc_access_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to manage ENIs for VPC access" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - name = "unity-nightly-lambda_vpc_access_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ec2:CreateNetworkInterface", - - "ec2:DescribeNetworkInterfaces", - - "ec2:DeleteNetworkInterface", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFEWQCJCUXT" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-JaBnF.aws_iam_role.ecs_execution_role will be destroyed - - resource "aws_iam_role" "ecs_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-09T02:08:59Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightlyecs_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightlyecs_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFFOEU2VTKI" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_iam_role.ecs_task_role will be destroyed - - resource "aws_iam_role" "ecs_task_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-09T02:08:59Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ecs_task_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ecs_task_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFCMSIETYRC" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_iam_role.lambda_iam_role will be destroyed - - resource "aws_iam_role" "lambda_iam_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-09T02:08:59Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-lambda_iam_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy", - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy", - - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-lambda_iam_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFMO2E43OL2" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_execution_role_policy" { - - id = "unity-nightlyecs_execution_role-20250109020859875700000004" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightlyecs_execution_role" -> null - } - - # module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_ssm_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_ssm_role_policy" { - - id = "unity-nightly-ecs_task_role-20250109020859899500000005" -> null - - policy_arn = "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess" -> null - - role = "unity-nightly-ecs_task_role" -> null - } - - # module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_base_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_base_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250109020859828600000002" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250109020859813000000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_vpc_access_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250109020859831200000003" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-JaBnF.aws_lambda_function.httpdlambda will be destroyed - - resource "aws_lambda_function" "httpdlambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement" -> null - - code_sha256 = "eFUx8dhh2JtcorJ/1+vHlS/cAehBGd6o5Kvf6EpZha4=" -> null - - filename = ".terraform/modules/default-unity-proxy-JaBnF/lambda.zip" -> null - - function_name = "unity-nightly-httpdproxymanagement" -> null - - handler = "lambda.lambda_handler" -> null - - id = "unity-nightly-httpdproxymanagement" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement/invocations" -> null - - last_modified = "2025-01-09T02:12:03.595+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - runtime = "python3.8" -> null - - skip_destroy = false -> null - - source_code_size = 687 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "CLUSTER_NAME" = "unity-nightly-httpd-cluster" - - "SERVICE_NAME" = "httpd-service" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-httpdproxymanagement" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - - - vpc_config { - - ipv6_allowed_for_dual_stack = false -> null - - security_group_ids = [ - - "sg-02d5dd2cb0992e786", - ] -> null - - subnet_ids = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - } - } - - # module.default-unity-proxy-JaBnF.aws_lb.httpd_alb will be destroyed - - resource "aws_lb" "httpd_alb" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/7e05e0322c303a83" -> null - - arn_suffix = "app/unity-nightly-httpd-alb/7e05e0322c303a83" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-httpd-alb-300145730.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/7e05e0322c303a83" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-httpd-alb" -> null - - preserve_host_header = true -> null - - security_groups = [ - - "sg-0b967f3f1ecb891fe", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-proxy-JaBnF.aws_lb_listener.httpd_listener will be destroyed - - resource "aws_lb_listener" "httpd_listener" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/7e05e0322c303a83/6be5adc3b4c5e533" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/7e05e0322c303a83/6be5adc3b4c5e533" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/7e05e0322c303a83" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86" -> null - - type = "forward" -> null - } - } - - # module.default-unity-proxy-JaBnF.aws_lb_target_group.httpd_tg will be destroyed - - resource "aws_lb_target_group" "httpd_tg" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86" -> null - - arn_suffix = "targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/7e05e0322c303a83", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-httpd-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 2 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-proxy-JaBnF.aws_security_group.ecs_alb_sg will be destroyed - - resource "aws_security_group" "ecs_alb_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0b967f3f1ecb891fe" -> null - - description = "Security group for ECS service ALB" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0b967f3f1ecb891fe" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_alb_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-JaBnF.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-04ca7c35917932841" -> null - - description = "Security group for ECS service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-04ca7c35917932841" -> null - - ingress = [ - - { - - cidr_blocks = [] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [ - - "sg-0b967f3f1ecb891fe", - ] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_service_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg will be destroyed - - resource "aws_security_group" "lambda_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-02d5dd2cb0992e786" -> null - - description = "Security group for httpd lambda service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-02d5dd2cb0992e786" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 2049 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 2049 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-httpd_lambda_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ssm_parameter.lambda_function_name will be destroyed - - resource "aws_ssm_parameter" "lambda_function_name" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - name = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ssm_parameter.management_console_url will be destroyed - - resource "aws_ssm_parameter" "management_console_url" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/component/management-console" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/component/management-console" -> null - - name = "/unity/unity/nightly/component/management-console" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_closevirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_closevirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_config will be destroyed - - resource "aws_ssm_parameter" "managementproxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_openvirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_openvirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_ssm_parameter.mgmt_endpoint will be destroyed - - resource "aws_ssm_parameter" "mgmt_endpoint" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - name = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-08dfbaf1ea0cd3a14" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-08dfbaf1ea0cd3a14" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-0b967f3f1ecb891fe" -> null - - security_group_rule_id = "sgr-08dfbaf1ea0cd3a14" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0ecddd07241d829ab" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-0ecddd07241d829ab" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-04ca7c35917932841" -> null - - security_group_rule_id = "sgr-0ecddd07241d829ab" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "alb_all_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0e711ec4b3ad49b32" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 8080 -> null - - id = "sgr-0e711ec4b3ad49b32" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-0b967f3f1ecb891fe" -> null - - security_group_rule_id = "sgr-0e711ec4b3ad49b32" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0ea27518d71eaf516" -> null - - from_port = 8080 -> null - - id = "sgr-0ea27518d71eaf516" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-0b967f3f1ecb891fe" -> null - - security_group_id = "sg-04ca7c35917932841" -> null - - security_group_rule_id = "sgr-0ea27518d71eaf516" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_mc_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0b72946dda044d1ea" -> null - - from_port = 8080 -> null - - id = "sgr-0b72946dda044d1ea" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-04ca7c35917932841" -> null - - security_group_id = "sg-06884f2cbac90764c" -> null - - security_group_rule_id = "sgr-0b72946dda044d1ea" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-ui-xGgOh.aws_alb_listener.front_end will be destroyed - - resource "aws_alb_listener" "front_end" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/be848efd0516a327/c85771688849d56c" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/be848efd0516a327/c85771688849d56c" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/be848efd0516a327" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3" -> null - - type = "forward" -> null - } - } - - # module.default-unity-ui-xGgOh.aws_alb_target_group.app will be destroyed - - resource "aws_alb_target_group" "app" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3" -> null - - arn_suffix = "targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/be848efd0516a327", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-ui-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 3 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-ui-xGgOh.aws_ecs_cluster.main will be destroyed - - resource "aws_ecs_cluster" "main" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - name = "unity-nightly-ui-cluster" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-ui-xGgOh.aws_ecs_service.main will be destroyed - - resource "aws_ecs_service" "main" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 2 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service" -> null - - launch_type = "FARGATE" -> null - - name = "unity-nightly-ui-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:18" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "ui" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-01f95e21f0a9bf026", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-ui-xGgOh.aws_ecs_task_definition.app will be destroyed - - resource "aws_ecs_task_definition" "app" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:18" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app" -> null - - container_definitions = (sensitive value) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - family = "unity-nightly-ui-app" -> null - - id = "unity-nightly-ui-app" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 18 -> null - - skip_destroy = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - track_latest = false -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-ui-xGgOh.aws_iam_role.ecs_task_execution_role will be destroyed - - resource "aws_iam_role" "ecs_task_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-09T02:25:59Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ui-ecs_task_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ui-ecs_task_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - unique_id = "AROA4S74LNWFEWYOJ6CNJ" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-ui-xGgOh.aws_iam_role_policy_attachment.ecs_task_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_task_execution_role_policy" { - - id = "unity-nightly-ui-ecs_task_execution_role-20250109022559821700000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightly-ui-ecs_task_execution_role" -> null - } - - # module.default-unity-ui-xGgOh.aws_lambda_invocation.proxy_lambda_invocation will be destroyed - - resource "aws_lambda_invocation" "proxy_lambda_invocation" { - - function_name = "unity-nightly-httpdproxymanagement" -> null - - id = "unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e" -> null - - lifecycle_scope = "CREATE_ONLY" -> null - - qualifier = "$LATEST" -> null - - result = jsonencode( - { - - body = "ECS task restarted" - - statusCode = 200 - } - ) -> null - - terraform_key = "tf" -> null - - triggers = { - - "redeployment" = (sensitive value) - } -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-xGgOh.aws_lb.main will be destroyed - - resource "aws_lb" "main" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/be848efd0516a327" -> null - - arn_suffix = "app/unity-nightly-ui-lb/be848efd0516a327" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-ui-lb-975444108.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/be848efd0516a327" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-ui-lb" -> null - - preserve_host_header = false -> null - - security_groups = [ - - "sg-01f95e21f0a9bf026", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-ui-xGgOh.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-01f95e21f0a9bf026" -> null - - description = "Security group for the UI ECS Service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-01f95e21f0a9bf026" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ui-ecs-sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-xGgOh.aws_ssm_parameter.uiux_ui_proxy_config will be destroyed - - resource "aws_ssm_parameter" "uiux_ui_proxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 72 to destroy. -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.invoke_role_arn: Destroying... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250109020859831200000003] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250109020859828600000002] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destroying... [id=sgr-0ecddd07241d829ab] -module.default-unity-ui-xGgOh.aws_lambda_invocation.proxy_lambda_invocation: Destroying... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destroying... [id=sgr-0ea27518d71eaf516] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destroying... [id=unity-nightlyecs_execution_role-20250109020859875700000004] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.root_level_get_method_mock_integration: Destroying... [id=agi-tqr82zu7f2-5byelr93x4-OPTIONS] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.mgmt_endpoint: Destroying... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-ui-xGgOh.aws_lambda_invocation.proxy_lambda_invocation: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_ssm_parameter.lambda_function_name: Destroying... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.root_level_get_method_mock_integration: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destroying... [id=unity-nightly-ecs_task_role-20250109020859899500000005] -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.invoke_role_arn: Destruction complete after 1s -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250109020859813000000001] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.mgmt_endpoint: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_target.invoke_lambda: Destroying... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.lambda_function_name: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destroying... [id=sgr-0e711ec4b3ad49b32] -module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_target.invoke_lambda: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration_response.api_gateway_integration_response: Destroying... [id=agir-tqr82zu7f2-eg7bjp-GET-200] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration_response.api_gateway_integration_response: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_uri: Destroying... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destroying... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destruction complete after 1s -module.default-unity-proxy-JaBnF.aws_ssm_parameter.management_console_url: Destroying... [id=/unity/unity/nightly/component/management-console] -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_uri: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_permission.allow_eventbridge: Destroying... [id=AllowExecutionFromEventBridge] -module.default-unity-apigateway-iAwhF.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destroying... [id=sgr-08dfbaf1ea0cd3a14] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.management_console_url: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destroying... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destroying... [id=sgr-0b72946dda044d1ea] -module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_permission.allow_eventbridge: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_ssm_parameter.uiux_ui_proxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_method.root_level_options_method: Destroying... [id=agm-tqr82zu7f2-5byelr93x4-OPTIONS] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destruction complete after 1s -module.default-unity-proxy-JaBnF.aws_lambda_function.httpdlambda: Destroying... [id=unity-nightly-httpdproxymanagement] -module.default-unity-apigateway-iAwhF.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_method_response.response_200: Destroying... [id=agmr-tqr82zu7f2-eg7bjp-GET-200] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_stage.api_gateway_stage: Destroying... [id=ags-tqr82zu7f2-default] -module.default-unity-apigateway-iAwhF.aws_api_gateway_method.root_level_options_method: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_ssm_parameter.uiux_ui_proxy_config: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_function.unity_cs_monitoring_lambda: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_rule.every_five_minutes: Destroying... [id=unity-nightly-every_five_minutes] -module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_ecs_stop_task_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-apigateway-iAwhF.aws_api_gateway_method_response.response_200: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_cloudwatch_event_rule.every_five_minutes: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destruction complete after 1s -module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_vpc_access_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-JaBnF.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_lambda_function.httpdlambda: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role.lambda_iam_role: Destroying... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Destroying... [id=sg-02d5dd2cb0992e786] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-cs-monitoring-lambda-COvFg.aws_lambda_function.unity_cs_monitoring_lambda: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.null_resource.download_lambda_zip: Destroying... [id=4617288372268172437] -module.default-unity-cs-monitoring-lambda-COvFg.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250109021629866000000001] -module.default-unity-apigateway-iAwhF.aws_api_gateway_stage.api_gateway_stage: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_deployment.api-gateway-deployment: Destroying... [id=fme1hf] -module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_ecs_stop_task_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role.lambda_execution_role: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_policy.lambda_ssm_s3_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-proxy-JaBnF.aws_iam_policy.lambda_vpc_access_policy: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role.lambda_iam_role: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_deployment.api-gateway-deployment: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.rest_api_integration_for_health_check: Destroying... [id=agi-tqr82zu7f2-eg7bjp-GET] -module.default-unity-apigateway-iAwhF.aws_api_gateway_integration.rest_api_integration_for_health_check: Destruction complete after 1s -module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destroying... [id=feoa6j] -module.default-unity-apigateway-iAwhF.aws_api_gateway_method.rest_api_method_for_health_check_method: Destroying... [id=agm-tqr82zu7f2-eg7bjp-GET] -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_role.lambda_execution_role: Destruction complete after 1s -module.default-unity-apigateway-iAwhF.aws_api_gateway_method.rest_api_method_for_health_check_method: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destroying... [id=eg7bjp] -module.default-unity-apigateway-iAwhF.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destroying... [id=oyt9ma] -module.default-unity-cs-monitoring-lambda-COvFg.aws_iam_policy.lambda_ssm_s3_policy: Destruction complete after 1s -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_api_path: Destroying... [id=ko4fat] -module.default-unity-apigateway-iAwhF.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_lambda_function.cs_common_lambda_auth: Destroying... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_api_path: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_management_path: Destroying... [id=e6yro3] -module.default-unity-apigateway-iAwhF.aws_api_gateway_resource.rest_api_resource_management_path: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_api_gateway_rest_api.rest_api: Destroying... [id=tqr82zu7f2] -module.default-unity-apigateway-iAwhF.aws_lambda_function.cs_common_lambda_auth: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.null_resource.download_lambda_zip: Destroying... [id=8168600298821204220] -module.default-unity-apigateway-iAwhF.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_iam_role.iam_for_lambda_auth: Destroying... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-iAwhF.aws_api_gateway_rest_api.rest_api: Destruction complete after 0s -module.default-unity-apigateway-iAwhF.aws_iam_role.iam_for_lambda_auth: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 10s elapsed] -module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=feoa6j, 10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 20s elapsed] -module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=feoa6j, 20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 30s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 30s elapsed] -module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=feoa6j, 30s elapsed] -module.default-unity-apigateway-iAwhF.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destruction complete after 35s -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 40s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 50s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m0s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 1m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m0s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 1m10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 1m20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m30s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 1m30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m30s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 1m40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m40s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m50s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 1m50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m0s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 2m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m0s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 2m10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 2m20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m30s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 2m30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m30s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 2m40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m40s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m50s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 2m50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m0s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 3m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m0s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 3m10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 3m20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m30s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 3m30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m30s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 3m40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m40s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m50s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 3m50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m0s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 4m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m0s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 4m10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 4m20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m30s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 4m30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m30s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 4m40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m40s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m50s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 4m50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m0s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 5m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m0s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 5m10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 5m20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m30s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 5m30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m30s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Still destroying... [id=sg-02d5dd2cb0992e786, 5m40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m40s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.lambda_sg: Destruction complete after 5m43s -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m0s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m10s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m10s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m20s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m20s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m30s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m30s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m40s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m40s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m50s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m50s elapsed] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m0s elapsed] -module.default-unity-proxy-JaBnF.aws_ecs_service.httpd_service: Destruction complete after 7m9s -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-JaBnF.aws_ecs_task_definition.httpd: Destroying... [id=httpd] -module.default-unity-proxy-JaBnF.aws_ecs_cluster.httpd_cluster: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-JaBnF.aws_security_group.ecs_sg: Destroying... [id=sg-04ca7c35917932841] -module.default-unity-proxy-JaBnF.aws_lb_listener.httpd_listener: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/7e05e0322c303a83/6be5adc3b4c5e533] -module.default-unity-proxy-JaBnF.aws_ecs_task_definition.httpd: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role.ecs_execution_role: Destroying... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-JaBnF.aws_iam_role.ecs_task_role: Destroying... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-JaBnF.aws_cloudwatch_log_group.proxyloggroup: Destroying... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_config: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_closevirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-JaBnF.aws_cloudwatch_log_group.proxyloggroup: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_ecs_cluster.httpd_cluster: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_lb_listener.httpd_listener: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_lb_target_group.httpd_tg: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/8d7e171b4e120d86] -module.default-unity-proxy-JaBnF.aws_lb.httpd_alb: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/7e05e0322c303a83] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_closevirtualhost: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_openvirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-JaBnF.aws_ssm_parameter.managementproxy_openvirtualhost: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_lb_target_group.httpd_tg: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_security_group.ecs_sg: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role.ecs_execution_role: Destruction complete after 0s -module.default-unity-proxy-JaBnF.aws_iam_role.ecs_task_role: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m10s elapsed] -module.default-unity-proxy-JaBnF.aws_lb.httpd_alb: Destruction complete after 1s -module.default-unity-proxy-JaBnF.aws_security_group.ecs_alb_sg: Destroying... [id=sg-0b967f3f1ecb891fe] -module.default-unity-ui-xGgOh.aws_ecs_service.main: Destruction complete after 7m19s -module.default-unity-ui-xGgOh.aws_ecs_task_definition.app: Destroying... [id=unity-nightly-ui-app] -module.default-unity-ui-xGgOh.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destroying... [id=unity-nightly-ui-ecs_task_execution_role-20250109022559821700000001] -module.default-unity-ui-xGgOh.aws_ecs_cluster.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-ui-xGgOh.aws_alb_listener.front_end: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/be848efd0516a327/c85771688849d56c] -module.default-unity-ui-xGgOh.aws_ecs_task_definition.app: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_alb_listener.front_end: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_lb.main: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/be848efd0516a327] -module.default-unity-ui-xGgOh.aws_alb_target_group.app: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/e2193ecdf890b0e3] -module.default-unity-ui-xGgOh.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_iam_role.ecs_task_execution_role: Destroying... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-ui-xGgOh.aws_ecs_cluster.main: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_alb_target_group.app: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_iam_role.ecs_task_execution_role: Destruction complete after 0s -module.default-unity-ui-xGgOh.aws_lb.main: Destruction complete after 1s -module.default-unity-ui-xGgOh.aws_security_group.ecs_sg: Destroying... [id=sg-01f95e21f0a9bf026] -module.default-unity-proxy-JaBnF.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-0b967f3f1ecb891fe, 10s elapsed] -module.default-unity-ui-xGgOh.aws_security_group.ecs_sg: Still destroying... [id=sg-01f95e21f0a9bf026, 10s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-0b967f3f1ecb891fe, 20s elapsed] -module.default-unity-proxy-JaBnF.aws_security_group.ecs_alb_sg: Destruction complete after 27s -module.default-unity-ui-xGgOh.aws_security_group.ecs_sg: Still destroying... [id=sg-01f95e21f0a9bf026, 20s elapsed] -module.default-unity-ui-xGgOh.aws_security_group.ecs_sg: Destruction complete after 27s - -Destroy complete! Resources: 72 destroyed. -Deleting DynamoDB table unity-nightly-terraform-state... -{ - "TableDescription": { - "TableName": "unity-nightly-terraform-state", - "TableStatus": "DELETING", - "ProvisionedThroughput": { - "NumberOfDecreasesToday": 0, - "ReadCapacityUnits": 5, - "WriteCapacityUnits": 5 - }, - "TableSizeBytes": 0, - "ItemCount": 0, - "TableArn": "arn:aws:dynamodb:us-west-2:865428270474:table/unity-nightly-terraform-state", - "TableId": "01442c10-52ff-49e0-b302-7717a8185cc1", - "DeletionProtectionEnabled": false - } -} -DynamoDB table unity-nightly-terraform-state was deleted successfully -/home/ubuntu/unity-cs-infra/nightly_tests -Terraform operations completed. Namespace directory and all Terraform files have been deleted. -MC Teardown: Completed in 493 seconds -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] -Waiting for Cloudformation Stack Termination..............................[40] -Waiting for Cloudformation Stack Termination..............................[60] -Waiting for Cloudformation Stack Termination..............................[80] -Waiting for Cloudformation Stack Termination..............................[100] -Waiting for Cloudformation Stack Termination..............................[120] -Waiting for Cloudformation Stack Termination..............................[140] -Waiting for Cloudformation Stack Termination..............................[160] -Waiting for Cloudformation Stack Termination..............................[180] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 200s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 20.2 KiB/20.2 KiB (234.1 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 19.2 KiB/19.2 KiB (206.2 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: 8adea800-ce2e-11ef-8155-0a8e710c845b, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-09T02:07:56.531000+00:00, - ResourceStatus: CREATE_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_COMPLETE-2025-01-09T02:07:55.258Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-09T02:07:55.258000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: DeployerAutoScalingGroup-c80a127c-2747-4a84-ae5f-678100eb06d1, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-09T02:07:54.827000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received SUCCESS signal with UniqueId i-068e4fff8abb31582 - - - EventId: 149d3800-ce2e-11ef-ba3d-06cd9042d79f, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-09T02:04:38.144000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-98b6c789-a826-4fae-ba6b-354c17ea5624, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-09T02:04:38.103000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-09T02:04:28.821Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-09T02:04:28.821000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-09T02:04:27.590Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-09T02:04:27.590000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-09T02:04:26.640Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-09T02:04:26.640000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-09T02:04:25.850Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-09T02:04:25.850000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-09T02:04:25.358Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-09T02:04:25.358000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-09T02:04:24.838Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-09T02:04:24.838000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-09T02:04:24.649Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-09T02:04:24.649000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-09T02:04:23.987Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-09T02:04:23.987000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-09T02:04:23.520Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-09T02:04:23.520000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-09T02:04:09.906Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-09T02:04:09.906000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-09T02:02:08.064Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-09T02:02:08.064000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-09T02:02:07.875Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-09T02:02:07.875000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-09T02:02:06.047Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-09T02:02:06.047000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-09T02:02:05.513Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-09T02:02:05.513000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-0b56bdf0-7ae1-47cb-b9ab-bcf37d7a516e, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-09T02:01:59.966000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-90ffc990-587c-4587-aa9c-10e6ce3a0734, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-09T02:01:59.707000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-09T02:01:59.127Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-09T02:01:59.127000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-09T02:01:59.104Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-09T02:01:59.104000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-09T02:01:58.167Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-09T02:01:58.167000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-09T02:01:57.668Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-09T02:01:57.668000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-09T02:01:57.620Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-09T02:01:57.620000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-09T02:01:56.644Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-09T02:01:56.644000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-09T02:01:56.564Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-09T02:01:56.564000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-09T02:01:55.722Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-09T02:01:55.722000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-09T02:01:50.385Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-09T02:01:50.385000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-09T02:01:50.294Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-09T02:01:50.294000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-09T02:01:47.832Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-09T02:01:47.832000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-09T02:01:47.789Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-09T02:01:47.789000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-09T02:01:47.123Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-09T02:01:47.123000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-09T02:01:41.186Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-09T02:01:41.186000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-09T02:01:41.089Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-09T02:01:41.089000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-09T02:01:40.008Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-09T02:01:40.008000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-09T02:01:39.949Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-09T02:01:39.949000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-09T02:01:39.055Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-09T02:01:39.055000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-09T02:01:39.030Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-09T02:01:39.030000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-09T02:01:39.015Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-09T02:01:39.015000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-09T02:01:39.001Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-09T02:01:39.001000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: a7fa8cc0-ce2d-11ef-a7fc-023ea157d2c5, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-09T02:01:35.959000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14260 100 11 100 14249 49 63896 --:--:-- --:--:-- --:--:-- 63946 -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-09_18-00/nightly_output_2025-01-09_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-09_18-00/nightly_output_2025-01-09_18-00.txt deleted file mode 100644 index 5313661b..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-09_18-00/nightly_output_2025-01-09_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [4732d8d] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [360 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-989770783.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-989770783.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-989770783.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-989770783.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5637030e734a -E #1 0x563702bfd6e0 -E #2 0x563702c4c3e6 -E #3 0x563702c4c681 -E #4 0x563702c91b04 -E #5 0x563702c7048d -E #6 0x563702c8eed7 -E #7 0x563702c70203 -E #8 0x563702c3ecc0 -E #9 0x563702c3fc9e -E #10 0x5637030b4d3b -E #11 0x5637030b8cc2 -E #12 0x5637030a1b6c -E #13 0x5637030b9837 -E #14 0x56370308710f -E #15 0x5637030d65a8 -E #16 0x5637030d6770 -E #17 0x5637030e61c6 -E #18 0x7f4e26006a94 -E #19 0x7f4e26093a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5637030e734a -E #1 0x563702bfd6e0 -E #2 0x563702c4c3e6 -E #3 0x563702c4c681 -E #4 0x563702c91b04 -E #5 0x563702c7048d -E #6 0x563702c8eed7 -E #7 0x563702c70203 -E #8 0x563702c3ecc0 -E #9 0x563702c3fc9e -E #10 0x5637030b4d3b -E #11 0x5637030b8cc2 -E #12 0x5637030a1b6c -E #13 0x5637030b9837 -E #14 0x56370308710f -E #15 0x5637030d65a8 -E #16 0x5637030d6770 -E #17 0x5637030e61c6 -E #18 0x7f4e26006a94 -E #19 0x7f4e26093a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5637030e734a -E #1 0x563702bfd6e0 -E #2 0x563702c4c3e6 -E #3 0x563702c4c681 -E #4 0x563702c91b04 -E #5 0x563702c7048d -E #6 0x563702c8eed7 -E #7 0x563702c70203 -E #8 0x563702c3ecc0 -E #9 0x563702c3fc9e -E #10 0x5637030b4d3b -E #11 0x5637030b8cc2 -E #12 0x5637030a1b6c -E #13 0x5637030b9837 -E #14 0x56370308710f -E #15 0x5637030d65a8 -E #16 0x5637030d6770 -E #17 0x5637030e61c6 -E #18 0x7f4e26006a94 -E #19 0x7f4e26093a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 120.47s (0:02:00) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-09_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-09_18-00/output.log deleted file mode 100644 index 458e6af5..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-09_18-00/output.log +++ /dev/null @@ -1,3130 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] -Hit:4 https://download.docker.com/linux/ubuntu focal InRelease -Get:5 https://apt.releases.hashicorp.com focal InRelease [12.9 kB] -Ign:6 https://apt.vector.dev stable InRelease -Hit:7 https://apt.vector.dev stable Release -Get:8 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Get:13 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3742 kB] -Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1253 kB] -Get:15 https://apt.releases.hashicorp.com focal/main amd64 Packages [163 kB] -Get:17 https://esm.ubuntu.com/apps/ubuntu focal-apps-security/main amd64 Packages [160 kB] -Get:18 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] -Get:19 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3364 kB] -Get:20 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [3357 kB] -Get:21 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [470 kB] -Get:22 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [24.8 kB] -Fetched 13.0 MB in 26s (501 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [4732d8d] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-08_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/d6226630-cef6-11ef-bf81-0212977b1de5" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Waiting for Cloudformation Stack..........................................[340] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [360 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-989770783.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 19.2 KiB/19.2 KiB (363.7 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 20.2 KiB/20.2 KiB (165.2 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -2bd15bbb2a60: Pull complete -9a128b13f9b1: Pull complete -181410dbbb3c: Pull complete -aee6dd6c6c6c: Pull complete -da6d2e56f44d: Pull complete -a21cc67e5ca6: Pull complete -51609b3a85b2: Pull complete -e57bde81af92: Pull complete -062afa674fc9: Pull complete -399fe729a9db: Pull complete -d8733e6f38f7: Pull complete -failed to register layer: write /usr/lib/x86_64-linux-gnu/libLLVM-17.so.1: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 13 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1311 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1787 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -1f368549439a47e146d7d4defd27a9f895d945b4fd1a856a43995b92ba8b3336 -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Thu Jan 9 18:31:55 PST 2025 -Pushing test results to nightly_logs/log_2025-01-09_18-00... -[main 27afe9a] Add nightly output for 2025-01-09_18-00 - 3 files changed, 3257 insertions(+) - create mode 100644 nightly_tests/nightly_logs/log_2025-01-09_18-00/nightly_output_2025-01-09_18-00.txt - create mode 100644 nightly_tests/nightly_logs/log_2025-01-09_18-00/output.log -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-09_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - 4732d8d..27afe9a main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: CREATE_COMPLETE -Destroying unity-nightly Management Console and AWS resources... -Initializing Terraform... -Initializing the backend... - -Successfully configured the backend "s3"! Terraform will automatically -use this backend unless the backend configuration changes. -Initializing provider plugins... -- Finding latest version of hashicorp/aws... -- Finding latest version of hashicorp/null... -- Installing hashicorp/aws v5.83.0... -- Installed hashicorp/aws v5.83.0 (signed by HashiCorp) -- Installing hashicorp/null v3.2.3... -- Installed hashicorp/null v3.2.3 (signed by HashiCorp) -Terraform has created a lock file .terraform.lock.hcl to record the provider -selections it made above. Include this file in your version control repository -so that Terraform can guarantee to make the same selections by default when -you run "terraform init" in the future. - -Terraform has been successfully initialized! - -You may now begin working with Terraform. Try running "terraform plan" to see -any changes that are required for your infrastructure. All Terraform commands -should now work. - -If you ever set or change modules or backend configuration for Terraform, -rerun this command to reinitialize your working directory. If you forget, other -commands will detect it and remind you to do so if necessary. -Destroying resources... -module.default-unity-cs-monitoring-lambda-kFbUJ.null_resource.download_lambda_zip: Refreshing state... [id=7573095961511213749] -module.default-unity-apigateway-xYfmG.null_resource.download_lambda_zip: Refreshing state... [id=2552036318435811346] -module.default-unity-ui-RAzWS.aws_security_group.ecs_sg: Refreshing state... [id=sg-050758e5184fd034b] -module.default-unity-apigateway-xYfmG.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Refreshing state... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-xYfmG.aws_api_gateway_rest_api.rest_api: Refreshing state... [id=0ulgl59a97] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_function.unity_cs_monitoring_lambda: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_api_path: Refreshing state... [id=v4l8eq] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250110020826807000000005] -module.default-unity-proxy-tEvuD.aws_security_group.ecs_sg: Refreshing state... [id=sg-0ec12a6921df43fe5] -module.default-unity-ui-RAzWS.aws_lb.main: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/a153d8a4fb1b8b40] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Refreshing state... [id=oczesh] -module.default-unity-proxy-tEvuD.aws_iam_role.lambda_iam_role: Refreshing state... [id=unity-nightly-lambda_iam_role] -module.default-unity-ui-RAzWS.aws_alb_listener.front_end: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/a153d8a4fb1b8b40/d4d0848def44df24] -module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_vpc_access_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_execution_role_policy: Refreshing state... [id=unity-nightlyecs_execution_role-20250110020826596900000001] -module.default-unity-apigateway-xYfmG.aws_api_gateway_deployment.api-gateway-deployment: Refreshing state... [id=qdkrrp] -module.default-unity-proxy-tEvuD.aws_ecs_cluster.httpd_cluster: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-tEvuD.aws_iam_role.ecs_execution_role: Refreshing state... [id=unity-nightlyecs_execution_role] -module.default-unity-apigateway-xYfmG.aws_api_gateway_method.root_level_options_method: Refreshing state... [id=agm-0ulgl59a97-41477gaa49-OPTIONS] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Refreshing state... [id=sg-09964b2a7268cb01d] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250110021557346200000001] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.management_console_url: Refreshing state... [id=/unity/unity/nightly/component/management-console] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250110020826780700000003] -module.default-unity-ui-RAzWS.aws_ecs_cluster.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-apigateway-xYfmG.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-0ulgl59a97-ovjoqm-GET-200] -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.rest_api_integration_for_health_check: Refreshing state... [id=agi-0ulgl59a97-ovjoqm-GET] -module.default-unity-proxy-tEvuD.aws_lb_listener.httpd_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4/a83e9f5e83bcf3dc] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Refreshing state... [id=unity-nightly-ecs_task_role-20250110020826632700000002] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Refreshing state... [id=sgr-0c654c58d6c0d1079] -module.default-unity-proxy-tEvuD.aws_lb_target_group.httpd_tg: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/35688631e1f007eb] -module.default-unity-ui-RAzWS.aws_lambda_invocation.proxy_lambda_invocation: Refreshing state... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.invoke_role_arn: Refreshing state... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_policy.lambda_ssm_s3_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-ui-RAzWS.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.root_level_get_method_mock_integration: Refreshing state... [id=agi-0ulgl59a97-41477gaa49-OPTIONS] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.mgmt_endpoint: Refreshing state... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-ui-RAzWS.aws_ssm_parameter.uiux_ui_proxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250110020826792600000004] -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_management_path: Refreshing state... [id=88rgq2] -module.default-unity-proxy-tEvuD.aws_ecs_task_definition.httpd: Refreshing state... [id=httpd] -module.default-unity-apigateway-xYfmG.aws_api_gateway_authorizer.unity_cs_common_authorizer: Refreshing state... [id=fd255u] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_permission.allow_eventbridge: Refreshing state... [id=AllowExecutionFromEventBridge] -module.default-unity-apigateway-xYfmG.aws_iam_role.iam_for_lambda_auth: Refreshing state... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-xYfmG.aws_api_gateway_method.rest_api_method_for_health_check_method: Refreshing state... [id=agm-0ulgl59a97-ovjoqm-GET] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_openvirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-tEvuD.aws_security_group.ecs_alb_sg: Refreshing state... [id=sg-031198ace1f80a7fe] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Refreshing state... [id=sgr-070fc69618d8505a3] -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Refreshing state... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.lambda_function_name: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-proxy-tEvuD.aws_lb.httpd_alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_target.invoke_lambda: Refreshing state... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-tEvuD.aws_cloudwatch_log_group.proxyloggroup: Refreshing state... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-ui-RAzWS.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role-20250110022527758200000001] -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_health_checks_path: Refreshing state... [id=ovjoqm] -module.default-unity-ui-RAzWS.aws_alb_target_group.app: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/802b0cf870e86515] -module.default-unity-proxy-tEvuD.aws_iam_role.ecs_task_role: Refreshing state... [id=unity-nightly-ecs_task_role] -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_uri: Refreshing state... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Refreshing state... [id=sgr-06889671de767627e] -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration_response.api_gateway_integration_response: Refreshing state... [id=agir-0ulgl59a97-ovjoqm-GET-200] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role.lambda_execution_role: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Refreshing state... [id=sgr-0cb90130f607496ec] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_closevirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-apigateway-xYfmG.aws_api_gateway_stage.api_gateway_stage: Refreshing state... [id=ags-0ulgl59a97-default] -module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_ecs_stop_task_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Refreshing state... [id=sgr-079308c2eccae2594] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_rule.every_five_minutes: Refreshing state... [id=unity-nightly-every_five_minutes] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-apigateway-xYfmG.aws_lambda_function.cs_common_lambda_auth: Refreshing state... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-proxy-tEvuD.aws_lambda_function.httpdlambda: Refreshing state... [id=unity-nightly-httpdproxymanagement] -module.default-unity-ui-RAzWS.aws_ecs_task_definition.app: Refreshing state... [id=unity-nightly-ui-app] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_authorizer.unity_cs_common_authorizer will be destroyed - - resource "aws_api_gateway_authorizer" "unity_cs_common_authorizer" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/0ulgl59a97/authorizers/fd255u" -> null - - authorizer_credentials = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - authorizer_result_ttl_in_seconds = 0 -> null - - authorizer_uri = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - id = "fd255u" -> null - - identity_source = "method.request.header.Authorization" -> null - - name = "Unity_CS_Common_Authorizer" -> null - - provider_arns = [] -> null - - rest_api_id = "0ulgl59a97" -> null - - type = "TOKEN" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_deployment.api-gateway-deployment will be destroyed - - resource "aws_api_gateway_deployment" "api-gateway-deployment" { - - created_date = "2025-01-10T02:24:11Z" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:0ulgl59a97/dev" -> null - - id = "qdkrrp" -> null - - invoke_url = "https://0ulgl59a97.execute-api.us-west-2.amazonaws.com/dev" -> null - - rest_api_id = "0ulgl59a97" -> null - - stage_name = "dev" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.rest_api_integration_for_health_check will be destroyed - - resource "aws_api_gateway_integration" "rest_api_integration_for_health_check" { - - cache_key_parameters = [] -> null - - cache_namespace = "ovjoqm" -> null - - connection_id = "oczesh" -> null - - connection_type = "VPC_LINK" -> null - - content_handling = "CONVERT_TO_TEXT" -> null - - http_method = "GET" -> null - - id = "agi-0ulgl59a97-ovjoqm-GET" -> null - - integration_http_method = "GET" -> null - - passthrough_behavior = "WHEN_NO_TEMPLATES" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "ovjoqm" -> null - - rest_api_id = "0ulgl59a97" -> null - - timeout_milliseconds = 29000 -> null - - type = "HTTP" -> null - - uri = "http://unity-mc-nlb-unity-nightly-9248e6b0561fca2f.elb.us-west-2.amazonaws.com:8080/api/health_checks" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.root_level_get_method_mock_integration will be destroyed - - resource "aws_api_gateway_integration" "root_level_get_method_mock_integration" { - - cache_key_parameters = [] -> null - - cache_namespace = "41477gaa49" -> null - - connection_type = "INTERNET" -> null - - http_method = "OPTIONS" -> null - - id = "agi-0ulgl59a97-41477gaa49-OPTIONS" -> null - - passthrough_behavior = "WHEN_NO_MATCH" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "41477gaa49" -> null - - rest_api_id = "0ulgl59a97" -> null - - timeout_milliseconds = 29000 -> null - - type = "MOCK" -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_integration_response.api_gateway_integration_response will be destroyed - - resource "aws_api_gateway_integration_response" "api_gateway_integration_response" { - - http_method = "GET" -> null - - id = "agir-0ulgl59a97-ovjoqm-GET-200" -> null - - resource_id = "ovjoqm" -> null - - response_parameters = {} -> null - - response_templates = {} -> null - - rest_api_id = "0ulgl59a97" -> null - - status_code = "200" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_method.rest_api_method_for_health_check_method will be destroyed - - resource "aws_api_gateway_method" "rest_api_method_for_health_check_method" { - - api_key_required = false -> null - - authorization = "CUSTOM" -> null - - authorization_scopes = [] -> null - - authorizer_id = "fd255u" -> null - - http_method = "GET" -> null - - id = "agm-0ulgl59a97-ovjoqm-GET" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "ovjoqm" -> null - - rest_api_id = "0ulgl59a97" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_method.root_level_options_method will be destroyed - - resource "aws_api_gateway_method" "root_level_options_method" { - - api_key_required = false -> null - - authorization = "NONE" -> null - - authorization_scopes = [] -> null - - http_method = "OPTIONS" -> null - - id = "agm-0ulgl59a97-41477gaa49-OPTIONS" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "41477gaa49" -> null - - rest_api_id = "0ulgl59a97" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_method_response.response_200 will be destroyed - - resource "aws_api_gateway_method_response" "response_200" { - - http_method = "GET" -> null - - id = "agmr-0ulgl59a97-ovjoqm-GET-200" -> null - - resource_id = "ovjoqm" -> null - - response_models = {} -> null - - response_parameters = {} -> null - - rest_api_id = "0ulgl59a97" -> null - - status_code = "200" -> null - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_api_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_api_path" { - - id = "v4l8eq" -> null - - parent_id = "88rgq2" -> null - - path = "/management/api" -> null - - path_part = "api" -> null - - rest_api_id = "0ulgl59a97" -> null - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_health_checks_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_health_checks_path" { - - id = "ovjoqm" -> null - - parent_id = "v4l8eq" -> null - - path = "/management/api/health_checks" -> null - - path_part = "health_checks" -> null - - rest_api_id = "0ulgl59a97" -> null - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_management_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_management_path" { - - id = "88rgq2" -> null - - parent_id = "41477gaa49" -> null - - path = "/management" -> null - - path_part = "management" -> null - - rest_api_id = "0ulgl59a97" -> null - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_rest_api.rest_api will be destroyed - - resource "aws_api_gateway_rest_api" "rest_api" { - - api_key_source = "HEADER" -> null - - arn = "arn:aws:apigateway:us-west-2::/restapis/0ulgl59a97" -> null - - binary_media_types = [] -> null - - created_date = "2025-01-10T02:17:29Z" -> null - - description = "Unity unity-nightly Project REST API Gateway" -> null - - disable_execute_api_endpoint = false -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:0ulgl59a97" -> null - - id = "0ulgl59a97" -> null - - name = "unity-unity-nightly-rest-api-gateway" -> null - - root_resource_id = "41477gaa49" -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - - - endpoint_configuration { - - types = [ - - "REGIONAL", - ] -> null - - vpc_endpoint_ids = [] -> null - } - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_stage.api_gateway_stage will be destroyed - - resource "aws_api_gateway_stage" "api_gateway_stage" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/0ulgl59a97/stages/default" -> null - - cache_cluster_enabled = false -> null - - deployment_id = "qdkrrp" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:0ulgl59a97/default" -> null - - id = "ags-0ulgl59a97-default" -> null - - invoke_url = "https://0ulgl59a97.execute-api.us-west-2.amazonaws.com/default" -> null - - rest_api_id = "0ulgl59a97" -> null - - stage_name = "default" -> null - - tags = {} -> null - - tags_all = {} -> null - - variables = {} -> null - - xray_tracing_enabled = false -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link will be destroyed - - resource "aws_api_gateway_vpc_link" "rest_api_health_check_vpc_link" { - - arn = "arn:aws:apigateway:us-west-2::/vpclinks/oczesh" -> null - - description = "mc-nlb-vpc-link-unity-nightly" -> null - - id = "oczesh" -> null - - name = "mc-nlb-vpc-link-unity-nightly" -> null - - tags = {} -> null - - tags_all = {} -> null - - target_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/net/unity-mc-nlb-unity-nightly/9248e6b0561fca2f", - ] -> null - } - - # module.default-unity-apigateway-xYfmG.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group will be destroyed - - resource "aws_cloudwatch_log_group" "cs_common_lambda_auth_log_group" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - id = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - log_group_class = "STANDARD" -> null - - name = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - retention_in_days = 14 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_iam_role.iam_for_lambda_auth will be destroyed - - resource "aws_iam_role" "iam_for_lambda_auth" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = [ - - "lambda.amazonaws.com", - - "apigateway.amazonaws.com", - ] - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-10T02:17:29Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-iam_for_lambda_auth" -> null - - managed_policy_arns = [] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-iam_for_lambda_auth" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFH2WE7DLUE" -> null - # (2 unchanged attributes hidden) - - - inline_policy { - - name = "unity-cs-lambda-auth-inline-policy" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "logs:PutLogEvents", - - "logs:CreateLogStream", - - "logs:CreateLogGroup", - - "lambda:InvokeFunction", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - } - } - - # module.default-unity-apigateway-xYfmG.aws_lambda_function.cs_common_lambda_auth will be destroyed - - resource "aws_lambda_function" "cs_common_lambda_auth" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer" -> null - - code_sha256 = "Bumcg++RUB+axI/ppSM5bFNknf8Jlc+l4e1pAQrYm98=" -> null - - filename = "ucs-common-lambda-auth.zip" -> null - - function_name = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - handler = "index.handler" -> null - - id = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - last_modified = "2025-01-10T02:17:39.827+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - runtime = "nodejs20.x" -> null - - skip_destroy = false -> null - - source_code_size = 212744 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "COGNITO_CLIENT_ID_LIST" = "deprecated" - - "COGNITO_GROUPS_ALLOWED" = (sensitive value) - - "COGNITO_USER_POOL_ID" = (sensitive value) - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_rest_api_id_parameter will be destroyed - - resource "aws_ssm_parameter" "api_gateway_rest_api_id_parameter" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - name = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_uri will be destroyed - - resource "aws_ssm_parameter" "api_gateway_uri" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/management/api-gateway/gateway-uri" -> null - - data_type = "text" -> null - - id = "/unity/cs/management/api-gateway/gateway-uri" -> null - - name = "/unity/cs/management/api-gateway/gateway-uri" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.aws_ssm_parameter.invoke_role_arn will be destroyed - - resource "aws_ssm_parameter" "invoke_role_arn" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - name = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-xYfmG.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "2552036318435811346" -> null - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_rule.every_five_minutes will be destroyed - - resource "aws_cloudwatch_event_rule" "every_five_minutes" { - - arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes" -> null - - is_enabled = true -> null - - name = "unity-nightly-every_five_minutes" -> null - - schedule_expression = "rate(5 minutes)" -> null - - state = "ENABLED" -> null - - tags = {} -> null - - tags_all = {} -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_target.invoke_lambda will be destroyed - - resource "aws_cloudwatch_event_target" "invoke_lambda" { - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes-invoke_lambda_function" -> null - - rule = "unity-nightly-every_five_minutes" -> null - - target_id = "invoke_lambda_function" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_policy.lambda_ssm_s3_policy will be destroyed - - resource "aws_iam_policy" "lambda_ssm_s3_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - attachment_count = 1 -> null - - description = "Policy to allow Lambda to read/write SSM and send objects to S3" -> null - - id = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ssm:GetParameter", - - "ssm:GetParameters", - - "ssm:PutParameter", - - "ssm:DescribeParameters", - ] - - Effect = "Allow" - - Resource = "*" - }, - - { - - Action = [ - - "s3:PutObject", - - "s3:GetObject", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFNPVST6MM2" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role.lambda_execution_role will be destroyed - - resource "aws_iam_role" "lambda_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-10T02:15:56Z" -> null - - force_detach_policies = false -> null - - id = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFLIVUIPTUM" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role_policy_attachment.attach_ssm_s3_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "attach_ssm_s3_policy" { - - id = "unity-unity-nightly-cs-monitoring-lambda-role-20250110021557346200000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - role = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_function.unity_cs_monitoring_lambda will be destroyed - - resource "aws_lambda_function" "unity_cs_monitoring_lambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - code_sha256 = "o4yFvQ976RHf3G1ExiEJg2pTNaiWfKNl9n5QvhIBvxc=" -> null - - filename = ".terraform/modules/default-unity-cs-monitoring-lambda-kFbUJ/unity-cs-monitoring-lambda.zip" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - handler = "lambda_function.lambda_handler" -> null - - id = "unity-unity-nightly-cs-monitoring-lambda" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda/invocations" -> null - - last_modified = "2025-01-10T02:16:06.757+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - runtime = "python3.12" -> null - - skip_destroy = false -> null - - source_code_size = 15016734 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 300 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "PROJECT" = "unity" - - "VENUE" = "nightly" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-unity-nightly-cs-monitoring-lambda" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_permission.allow_eventbridge will be destroyed - - resource "aws_lambda_permission" "allow_eventbridge" { - - action = "lambda:InvokeFunction" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - id = "AllowExecutionFromEventBridge" -> null - - principal = "events.amazonaws.com" -> null - - source_arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - statement_id = "AllowExecutionFromEventBridge" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-kFbUJ.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "7573095961511213749" -> null - } - - # module.default-unity-proxy-tEvuD.aws_cloudwatch_log_group.proxyloggroup will be destroyed - - resource "aws_cloudwatch_log_group" "proxyloggroup" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/ecs/unity-nightly-managementproxy" -> null - - id = "/ecs/unity-nightly-managementproxy" -> null - - log_group_class = "STANDARD" -> null - - name = "/ecs/unity-nightly-managementproxy" -> null - - retention_in_days = 0 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ecs_cluster.httpd_cluster will be destroyed - - resource "aws_ecs_cluster" "httpd_cluster" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - name = "unity-nightly-httpd-cluster" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service will be destroyed - - resource "aws_ecs_service" "httpd_service" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 1 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service" -> null - - launch_type = "FARGATE" -> null - - name = "httpd-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:341" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "unity-nightly-httpd-task" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/35688631e1f007eb" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-0ec12a6921df43fe5", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-proxy-tEvuD.aws_ecs_task_definition.httpd will be destroyed - - resource "aws_ecs_task_definition" "httpd" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:341" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd" -> null - - container_definitions = jsonencode( - [ - - { - - environment = [ - - { - - name = "UNITY_PROJECT" - - value = "unity" - }, - - { - - name = "UNITY_VENUE" - - value = "nightly" - }, - ] - - essential = true - - image = "ghcr.io/unity-sds/unity-proxy/httpd-proxy:0.16.0" - - logConfiguration = { - - logDriver = "awslogs" - - options = { - - awslogs-group = "/ecs/unity-nightly-managementproxy" - - awslogs-region = "us-west-2" - - awslogs-stream-prefix = "ecs" - } - } - - mountPoints = [] - - name = "unity-nightly-httpd-task" - - portMappings = [ - - { - - containerPort = 8080 - - hostPort = 8080 - - protocol = "tcp" - }, - ] - - systemControls = [] - - volumesFrom = [] - }, - ] - ) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - family = "httpd" -> null - - id = "httpd" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 341 -> null - - skip_destroy = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - track_latest = false -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_ecs_stop_task_policy will be destroyed - - resource "aws_iam_policy" "lambda_ecs_stop_task_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to stop ECS tasks" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - name = "unity-nightly-lambda_ecs_stop_task_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ecs:ListTasks", - - "ecs:StopTask", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFLJKAZB5FR" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_vpc_access_policy will be destroyed - - resource "aws_iam_policy" "lambda_vpc_access_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to manage ENIs for VPC access" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - name = "unity-nightly-lambda_vpc_access_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ec2:CreateNetworkInterface", - - "ec2:DescribeNetworkInterfaces", - - "ec2:DeleteNetworkInterface", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFG6MUA7BT2" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tEvuD.aws_iam_role.ecs_execution_role will be destroyed - - resource "aws_iam_role" "ecs_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-10T02:08:26Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightlyecs_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightlyecs_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFDLQN4LOD6" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_iam_role.ecs_task_role will be destroyed - - resource "aws_iam_role" "ecs_task_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-10T02:08:26Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ecs_task_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ecs_task_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFBQK5YCUOF" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_iam_role.lambda_iam_role will be destroyed - - resource "aws_iam_role" "lambda_iam_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-10T02:08:26Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-lambda_iam_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy", - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy", - - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-lambda_iam_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFESOXIIOK2" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_execution_role_policy" { - - id = "unity-nightlyecs_execution_role-20250110020826596900000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightlyecs_execution_role" -> null - } - - # module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_ssm_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_ssm_role_policy" { - - id = "unity-nightly-ecs_task_role-20250110020826632700000002" -> null - - policy_arn = "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess" -> null - - role = "unity-nightly-ecs_task_role" -> null - } - - # module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_base_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_base_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250110020826780700000003" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250110020826807000000005" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_vpc_access_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250110020826792600000004" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-tEvuD.aws_lambda_function.httpdlambda will be destroyed - - resource "aws_lambda_function" "httpdlambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement" -> null - - code_sha256 = "eFUx8dhh2JtcorJ/1+vHlS/cAehBGd6o5Kvf6EpZha4=" -> null - - filename = ".terraform/modules/default-unity-proxy-tEvuD/lambda.zip" -> null - - function_name = "unity-nightly-httpdproxymanagement" -> null - - handler = "lambda.lambda_handler" -> null - - id = "unity-nightly-httpdproxymanagement" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement/invocations" -> null - - last_modified = "2025-01-10T02:11:30.663+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - runtime = "python3.8" -> null - - skip_destroy = false -> null - - source_code_size = 687 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "CLUSTER_NAME" = "unity-nightly-httpd-cluster" - - "SERVICE_NAME" = "httpd-service" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-httpdproxymanagement" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - - - vpc_config { - - ipv6_allowed_for_dual_stack = false -> null - - security_group_ids = [ - - "sg-09964b2a7268cb01d", - ] -> null - - subnet_ids = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - } - } - - # module.default-unity-proxy-tEvuD.aws_lb.httpd_alb will be destroyed - - resource "aws_lb" "httpd_alb" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4" -> null - - arn_suffix = "app/unity-nightly-httpd-alb/3e622ec6d4d23cc4" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-httpd-alb-989770783.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-httpd-alb" -> null - - preserve_host_header = true -> null - - security_groups = [ - - "sg-031198ace1f80a7fe", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-proxy-tEvuD.aws_lb_listener.httpd_listener will be destroyed - - resource "aws_lb_listener" "httpd_listener" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4/a83e9f5e83bcf3dc" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4/a83e9f5e83bcf3dc" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/35688631e1f007eb" -> null - - type = "forward" -> null - } - } - - # module.default-unity-proxy-tEvuD.aws_lb_target_group.httpd_tg will be destroyed - - resource "aws_lb_target_group" "httpd_tg" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/35688631e1f007eb" -> null - - arn_suffix = "targetgroup/unity-nightly-httpd-tg/35688631e1f007eb" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/35688631e1f007eb" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-httpd-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 2 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-proxy-tEvuD.aws_security_group.ecs_alb_sg will be destroyed - - resource "aws_security_group" "ecs_alb_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-031198ace1f80a7fe" -> null - - description = "Security group for ECS service ALB" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-031198ace1f80a7fe" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_alb_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tEvuD.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0ec12a6921df43fe5" -> null - - description = "Security group for ECS service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0ec12a6921df43fe5" -> null - - ingress = [ - - { - - cidr_blocks = [] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [ - - "sg-031198ace1f80a7fe", - ] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_service_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg will be destroyed - - resource "aws_security_group" "lambda_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-09964b2a7268cb01d" -> null - - description = "Security group for httpd lambda service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-09964b2a7268cb01d" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 2049 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 2049 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-httpd_lambda_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ssm_parameter.lambda_function_name will be destroyed - - resource "aws_ssm_parameter" "lambda_function_name" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - name = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ssm_parameter.management_console_url will be destroyed - - resource "aws_ssm_parameter" "management_console_url" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/component/management-console" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/component/management-console" -> null - - name = "/unity/unity/nightly/component/management-console" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_closevirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_closevirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_config will be destroyed - - resource "aws_ssm_parameter" "managementproxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_openvirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_openvirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_ssm_parameter.mgmt_endpoint will be destroyed - - resource "aws_ssm_parameter" "mgmt_endpoint" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - name = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-079308c2eccae2594" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-079308c2eccae2594" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-031198ace1f80a7fe" -> null - - security_group_rule_id = "sgr-079308c2eccae2594" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0cb90130f607496ec" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-0cb90130f607496ec" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-0ec12a6921df43fe5" -> null - - security_group_rule_id = "sgr-0cb90130f607496ec" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "alb_all_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-070fc69618d8505a3" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 8080 -> null - - id = "sgr-070fc69618d8505a3" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-031198ace1f80a7fe" -> null - - security_group_rule_id = "sgr-070fc69618d8505a3" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0c654c58d6c0d1079" -> null - - from_port = 8080 -> null - - id = "sgr-0c654c58d6c0d1079" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-031198ace1f80a7fe" -> null - - security_group_id = "sg-0ec12a6921df43fe5" -> null - - security_group_rule_id = "sgr-0c654c58d6c0d1079" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_mc_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-06889671de767627e" -> null - - from_port = 8080 -> null - - id = "sgr-06889671de767627e" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-0ec12a6921df43fe5" -> null - - security_group_id = "sg-0255116b9973b351e" -> null - - security_group_rule_id = "sgr-06889671de767627e" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-ui-RAzWS.aws_alb_listener.front_end will be destroyed - - resource "aws_alb_listener" "front_end" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/a153d8a4fb1b8b40/d4d0848def44df24" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/a153d8a4fb1b8b40/d4d0848def44df24" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/a153d8a4fb1b8b40" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/802b0cf870e86515" -> null - - type = "forward" -> null - } - } - - # module.default-unity-ui-RAzWS.aws_alb_target_group.app will be destroyed - - resource "aws_alb_target_group" "app" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/802b0cf870e86515" -> null - - arn_suffix = "targetgroup/unity-nightly-ui-tg/802b0cf870e86515" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/802b0cf870e86515" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/a153d8a4fb1b8b40", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-ui-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 3 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-ui-RAzWS.aws_ecs_cluster.main will be destroyed - - resource "aws_ecs_cluster" "main" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - name = "unity-nightly-ui-cluster" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-ui-RAzWS.aws_ecs_service.main will be destroyed - - resource "aws_ecs_service" "main" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 2 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service" -> null - - launch_type = "FARGATE" -> null - - name = "unity-nightly-ui-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:19" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "ui" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/802b0cf870e86515" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-050758e5184fd034b", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-ui-RAzWS.aws_ecs_task_definition.app will be destroyed - - resource "aws_ecs_task_definition" "app" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:19" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app" -> null - - container_definitions = (sensitive value) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - family = "unity-nightly-ui-app" -> null - - id = "unity-nightly-ui-app" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 19 -> null - - skip_destroy = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - track_latest = false -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-ui-RAzWS.aws_iam_role.ecs_task_execution_role will be destroyed - - resource "aws_iam_role" "ecs_task_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-10T02:25:27Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ui-ecs_task_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ui-ecs_task_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - unique_id = "AROA4S74LNWFB42UOGJA5" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-ui-RAzWS.aws_iam_role_policy_attachment.ecs_task_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_task_execution_role_policy" { - - id = "unity-nightly-ui-ecs_task_execution_role-20250110022527758200000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightly-ui-ecs_task_execution_role" -> null - } - - # module.default-unity-ui-RAzWS.aws_lambda_invocation.proxy_lambda_invocation will be destroyed - - resource "aws_lambda_invocation" "proxy_lambda_invocation" { - - function_name = "unity-nightly-httpdproxymanagement" -> null - - id = "unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e" -> null - - lifecycle_scope = "CREATE_ONLY" -> null - - qualifier = "$LATEST" -> null - - result = jsonencode( - { - - body = "ECS task restarted" - - statusCode = 200 - } - ) -> null - - terraform_key = "tf" -> null - - triggers = { - - "redeployment" = (sensitive value) - } -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-RAzWS.aws_lb.main will be destroyed - - resource "aws_lb" "main" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/a153d8a4fb1b8b40" -> null - - arn_suffix = "app/unity-nightly-ui-lb/a153d8a4fb1b8b40" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-ui-lb-829319058.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/a153d8a4fb1b8b40" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-ui-lb" -> null - - preserve_host_header = false -> null - - security_groups = [ - - "sg-050758e5184fd034b", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-ui-RAzWS.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-050758e5184fd034b" -> null - - description = "Security group for the UI ECS Service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-050758e5184fd034b" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ui-ecs-sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-RAzWS.aws_ssm_parameter.uiux_ui_proxy_config will be destroyed - - resource "aws_ssm_parameter" "uiux_ui_proxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 72 to destroy. -module.default-unity-ui-RAzWS.aws_ecs_service.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_target.invoke_lambda: Destroying... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destroying... [id=sgr-0cb90130f607496ec] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destroying... [id=sgr-06889671de767627e] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250110020826807000000005] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destroying... [id=sgr-079308c2eccae2594] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250110020826780700000003] -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration_response.api_gateway_integration_response: Destroying... [id=agir-0ulgl59a97-ovjoqm-GET-200] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.mgmt_endpoint: Destroying... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250110020826792600000004] -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration_response.api_gateway_integration_response: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.root_level_get_method_mock_integration: Destroying... [id=agi-0ulgl59a97-41477gaa49-OPTIONS] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_target.invoke_lambda: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destroying... [id=unity-nightlyecs_execution_role-20250110020826596900000001] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.mgmt_endpoint: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_permission.allow_eventbridge: Destroying... [id=AllowExecutionFromEventBridge] -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.root_level_get_method_mock_integration: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_ssm_parameter.management_console_url: Destroying... [id=/unity/unity/nightly/component/management-console] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_permission.allow_eventbridge: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_lambda_invocation.proxy_lambda_invocation: Destroying... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-ui-RAzWS.aws_lambda_invocation.proxy_lambda_invocation: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_ssm_parameter.management_console_url: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destroying... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destroying... [id=unity-nightly-ecs_task_role-20250110020826632700000002] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_uri: Destroying... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destroying... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-apigateway-xYfmG.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destroying... [id=sgr-070fc69618d8505a3] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.invoke_role_arn: Destroying... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_uri: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_ssm_parameter.lambda_function_name: Destroying... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destroying... [id=sgr-0c654c58d6c0d1079] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_ssm_parameter.invoke_role_arn: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_method.root_level_options_method: Destroying... [id=agm-0ulgl59a97-41477gaa49-OPTIONS] -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_rule.every_five_minutes: Destroying... [id=unity-nightly-every_five_minutes] -module.default-unity-apigateway-xYfmG.aws_api_gateway_method_response.response_200: Destroying... [id=agmr-0ulgl59a97-ovjoqm-GET-200] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_function.unity_cs_monitoring_lambda: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.lambda_function_name: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_ssm_parameter.uiux_ui_proxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_cloudwatch_event_rule.every_five_minutes: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_method.root_level_options_method: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_method_response.response_200: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_vpc_access_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-apigateway-xYfmG.aws_api_gateway_stage.api_gateway_stage: Destroying... [id=ags-0ulgl59a97-default] -module.default-unity-proxy-tEvuD.aws_lambda_function.httpdlambda: Destroying... [id=unity-nightly-httpdproxymanagement] -module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_ecs_stop_task_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_ssm_parameter.uiux_ui_proxy_config: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_lambda_function.httpdlambda: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role.lambda_iam_role: Destroying... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Destroying... [id=sg-09964b2a7268cb01d] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_lambda_function.unity_cs_monitoring_lambda: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-kFbUJ.null_resource.download_lambda_zip: Destroying... [id=7573095961511213749] -module.default-unity-cs-monitoring-lambda-kFbUJ.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250110021557346200000001] -module.default-unity-apigateway-xYfmG.aws_api_gateway_stage.api_gateway_stage: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_deployment.api-gateway-deployment: Destroying... [id=qdkrrp] -module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_vpc_access_policy: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_policy.lambda_ecs_stop_task_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_policy.lambda_ssm_s3_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role.lambda_execution_role: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-apigateway-xYfmG.aws_api_gateway_deployment.api-gateway-deployment: Destruction complete after 1s -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.rest_api_integration_for_health_check: Destroying... [id=agi-0ulgl59a97-ovjoqm-GET] -module.default-unity-proxy-tEvuD.aws_iam_role.lambda_iam_role: Destruction complete after 1s -module.default-unity-apigateway-xYfmG.aws_api_gateway_integration.rest_api_integration_for_health_check: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_method.rest_api_method_for_health_check_method: Destroying... [id=agm-0ulgl59a97-ovjoqm-GET] -module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destroying... [id=oczesh] -module.default-unity-apigateway-xYfmG.aws_api_gateway_method.rest_api_method_for_health_check_method: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destroying... [id=ovjoqm] -module.default-unity-apigateway-xYfmG.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destroying... [id=fd255u] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_policy.lambda_ssm_s3_policy: Destruction complete after 1s -module.default-unity-apigateway-xYfmG.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_lambda_function.cs_common_lambda_auth: Destroying... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_api_path: Destroying... [id=v4l8eq] -module.default-unity-cs-monitoring-lambda-kFbUJ.aws_iam_role.lambda_execution_role: Destruction complete after 1s -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_api_path: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_management_path: Destroying... [id=88rgq2] -module.default-unity-apigateway-xYfmG.aws_api_gateway_resource.rest_api_resource_management_path: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_api_gateway_rest_api.rest_api: Destroying... [id=0ulgl59a97] -module.default-unity-apigateway-xYfmG.aws_lambda_function.cs_common_lambda_auth: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.null_resource.download_lambda_zip: Destroying... [id=2552036318435811346] -module.default-unity-apigateway-xYfmG.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_iam_role.iam_for_lambda_auth: Destroying... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-xYfmG.aws_api_gateway_rest_api.rest_api: Destruction complete after 0s -module.default-unity-apigateway-xYfmG.aws_iam_role.iam_for_lambda_auth: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 10s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 10s elapsed] -module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=oczesh, 10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 20s elapsed] -module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=oczesh, 20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 30s elapsed] -module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=oczesh, 30s elapsed] -module.default-unity-apigateway-xYfmG.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destruction complete after 35s -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 40s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 50s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m0s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 1m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m10s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 1m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 1m20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 1m30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m30s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 1m40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m40s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m50s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 1m50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m0s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 2m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m10s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 2m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 2m20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 2m30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m30s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 2m40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m40s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m50s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 2m50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m0s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 3m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m10s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 3m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 3m20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 3m30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m30s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 3m40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m40s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m50s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 3m50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m0s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 4m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m10s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 4m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 4m20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 4m30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m30s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 4m40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m40s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m50s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 4m50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m0s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 5m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m10s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 5m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 5m20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 5m30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m30s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Still destroying... [id=sg-09964b2a7268cb01d, 5m40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.lambda_sg: Destruction complete after 5m43s -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m20s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m20s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m30s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m30s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m40s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m40s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m50s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m0s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m0s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m10s elapsed] -module.default-unity-proxy-tEvuD.aws_ecs_service.httpd_service: Destruction complete after 7m19s -module.default-unity-proxy-tEvuD.aws_ecs_cluster.httpd_cluster: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-tEvuD.aws_ecs_task_definition.httpd: Destroying... [id=httpd] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-tEvuD.aws_security_group.ecs_sg: Destroying... [id=sg-0ec12a6921df43fe5] -module.default-unity-proxy-tEvuD.aws_lb_listener.httpd_listener: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4/a83e9f5e83bcf3dc] -module.default-unity-proxy-tEvuD.aws_ecs_task_definition.httpd: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role.ecs_task_role: Destroying... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-tEvuD.aws_iam_role.ecs_execution_role: Destroying... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-tEvuD.aws_cloudwatch_log_group.proxyloggroup: Destroying... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_config: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_closevirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-tEvuD.aws_ecs_cluster.httpd_cluster: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_cloudwatch_log_group.proxyloggroup: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_lb_listener.httpd_listener: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_lb_target_group.httpd_tg: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/35688631e1f007eb] -module.default-unity-proxy-tEvuD.aws_lb.httpd_alb: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/3e622ec6d4d23cc4] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_closevirtualhost: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_openvirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-tEvuD.aws_ssm_parameter.managementproxy_openvirtualhost: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_lb_target_group.httpd_tg: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_security_group.ecs_sg: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role.ecs_task_role: Destruction complete after 0s -module.default-unity-proxy-tEvuD.aws_iam_role.ecs_execution_role: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m20s elapsed] -module.default-unity-proxy-tEvuD.aws_lb.httpd_alb: Destruction complete after 1s -module.default-unity-proxy-tEvuD.aws_security_group.ecs_alb_sg: Destroying... [id=sg-031198ace1f80a7fe] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m30s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-031198ace1f80a7fe, 10s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m40s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-031198ace1f80a7fe, 20s elapsed] -module.default-unity-proxy-tEvuD.aws_security_group.ecs_alb_sg: Destruction complete after 27s -module.default-unity-ui-RAzWS.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m50s elapsed] -module.default-unity-ui-RAzWS.aws_ecs_service.main: Destruction complete after 7m59s -module.default-unity-ui-RAzWS.aws_ecs_cluster.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-ui-RAzWS.aws_ecs_task_definition.app: Destroying... [id=unity-nightly-ui-app] -module.default-unity-ui-RAzWS.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destroying... [id=unity-nightly-ui-ecs_task_execution_role-20250110022527758200000001] -module.default-unity-ui-RAzWS.aws_alb_listener.front_end: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/a153d8a4fb1b8b40/d4d0848def44df24] -module.default-unity-ui-RAzWS.aws_ecs_task_definition.app: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_ecs_cluster.main: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_alb_listener.front_end: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_lb.main: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/a153d8a4fb1b8b40] -module.default-unity-ui-RAzWS.aws_alb_target_group.app: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/802b0cf870e86515] -module.default-unity-ui-RAzWS.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_iam_role.ecs_task_execution_role: Destroying... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-ui-RAzWS.aws_alb_target_group.app: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_iam_role.ecs_task_execution_role: Destruction complete after 0s -module.default-unity-ui-RAzWS.aws_lb.main: Destruction complete after 1s -module.default-unity-ui-RAzWS.aws_security_group.ecs_sg: Destroying... [id=sg-050758e5184fd034b] -module.default-unity-ui-RAzWS.aws_security_group.ecs_sg: Still destroying... [id=sg-050758e5184fd034b, 10s elapsed] -module.default-unity-ui-RAzWS.aws_security_group.ecs_sg: Still destroying... [id=sg-050758e5184fd034b, 20s elapsed] -module.default-unity-ui-RAzWS.aws_security_group.ecs_sg: Still destroying... [id=sg-050758e5184fd034b, 30s elapsed] -module.default-unity-ui-RAzWS.aws_security_group.ecs_sg: Destruction complete after 37s - -Destroy complete! Resources: 72 destroyed. -Deleting DynamoDB table unity-nightly-terraform-state... -{ - "TableDescription": { - "TableName": "unity-nightly-terraform-state", - "TableStatus": "DELETING", - "ProvisionedThroughput": { - "NumberOfDecreasesToday": 0, - "ReadCapacityUnits": 5, - "WriteCapacityUnits": 5 - }, - "TableSizeBytes": 0, - "ItemCount": 0, - "TableArn": "arn:aws:dynamodb:us-west-2:865428270474:table/unity-nightly-terraform-state", - "TableId": "5f0ce83f-f1e2-449a-a07c-1246f28f78c4", - "DeletionProtectionEnabled": false - } -} -DynamoDB table unity-nightly-terraform-state was deleted successfully -/home/ubuntu/unity-cs-infra/nightly_tests -Terraform operations completed. Namespace directory and all Terraform files have been deleted. -MC Teardown: Completed in 544 seconds -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] -Waiting for Cloudformation Stack Termination..............................[40] -Waiting for Cloudformation Stack Termination..............................[60] -Waiting for Cloudformation Stack Termination..............................[80] -Waiting for Cloudformation Stack Termination..............................[100] -Waiting for Cloudformation Stack Termination..............................[120] -Waiting for Cloudformation Stack Termination..............................[140] -Waiting for Cloudformation Stack Termination..............................[160] -Waiting for Cloudformation Stack Termination..............................[180] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 200s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 20.2 KiB/20.2 KiB (181.0 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 19.2 KiB/19.2 KiB (264.9 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: a6998e60-cef7-11ef-a0d7-0a8d674272cf, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-10T02:07:31.898000+00:00, - ResourceStatus: CREATE_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_COMPLETE-2025-01-10T02:07:30.668Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-10T02:07:30.668000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: DeployerAutoScalingGroup-eb25d4dd-29c6-4330-a4d7-98a065c7e8fa, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-10T02:07:30.151000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received SUCCESS signal with UniqueId i-063f91858ba9554e1 - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-10T02:04:15.465Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-10T02:04:15.465000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: 3037c520-cef7-11ef-bd73-02bca3eced93, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-10T02:04:13.298000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-345c460b-02d8-4778-a150-8bd1ae922a8d, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-10T02:04:13.272000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-10T02:04:03.879Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-10T02:04:03.879000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-10T02:04:02.645Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-10T02:04:02.645000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-10T02:04:01.700Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-10T02:04:01.700000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-10T02:04:01.396Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-10T02:04:01.396000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-10T02:04:00.572Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-10T02:04:00.572000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-10T02:04:00.312Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-10T02:04:00.312000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-10T02:04:00.093Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-10T02:04:00.093000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-10T02:03:59.335Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-10T02:03:59.335000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-10T02:03:58.747Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-10T02:03:58.747000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-10T02:02:13.135Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-10T02:02:13.135000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-10T02:02:12.966Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-10T02:02:12.966000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-10T02:02:11.232Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-10T02:02:11.232000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-10T02:02:10.655Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-10T02:02:10.655000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-24ae5217-7f3b-4a39-b10a-b0dc284be804, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-10T02:02:05.706000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-959c2f8e-1503-4e1d-a27e-210feacded4f, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-10T02:02:05.490000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-10T02:02:04.898Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-10T02:02:04.898000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-10T02:02:04.867Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-10T02:02:04.867000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-10T02:02:03.858Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-10T02:02:03.858000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-10T02:02:03.423Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-10T02:02:03.423000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-10T02:02:03.368Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-10T02:02:03.368000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-10T02:02:02.283Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-10T02:02:02.283000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-10T02:02:01.695Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-10T02:02:01.695000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-10T02:01:56.851Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:56.851000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-10T02:01:56.213Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-10T02:01:56.213000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-10T02:01:53.656Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-10T02:01:53.656000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-10T02:01:53.135Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:53.135000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-10T02:01:50.992Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:50.992000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-10T02:01:48.732Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:48.732000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-56d9fe40-399e-40d9-a3f9-91a594922bc6, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:48.120000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-10T02:01:47.518Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:47.518000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-10T02:01:47.379Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-10T02:01:47.379000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-10T02:01:46.258Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-10T02:01:46.258000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-10T02:01:46.152Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-10T02:01:46.152000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-10T02:01:45.235Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-10T02:01:45.235000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-10T02:01:45.230Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-10T02:01:45.230000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-10T02:01:45.229Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-10T02:01:45.229000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-10T02:01:45.224Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-10T02:01:45.224000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: d62413e0-cef6-11ef-bf81-0212977b1de5, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-10T02:01:42.275000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14589 100 11 100 14578 48 64504 --:--:-- --:--:-- --:--:-- 64553 -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-10_18-00/nightly_output_2025-01-10_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-10_18-00/nightly_output_2025-01-10_18-00.txt deleted file mode 100644 index e205181b..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-10_18-00/nightly_output_2025-01-10_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [27afe9a] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [420 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-137510775.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-137510775.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-137510775.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-137510775.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55d76eb0b34a -E #1 0x55d76e6216e0 -E #2 0x55d76e6703e6 -E #3 0x55d76e670681 -E #4 0x55d76e6b5b04 -E #5 0x55d76e69448d -E #6 0x55d76e6b2ed7 -E #7 0x55d76e694203 -E #8 0x55d76e662cc0 -E #9 0x55d76e663c9e -E #10 0x55d76ead8d3b -E #11 0x55d76eadccc2 -E #12 0x55d76eac5b6c -E #13 0x55d76eadd837 -E #14 0x55d76eaab10f -E #15 0x55d76eafa5a8 -E #16 0x55d76eafa770 -E #17 0x55d76eb0a1c6 -E #18 0x7f381d694a94 -E #19 0x7f381d721a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55d76eb0b34a -E #1 0x55d76e6216e0 -E #2 0x55d76e6703e6 -E #3 0x55d76e670681 -E #4 0x55d76e6b5b04 -E #5 0x55d76e69448d -E #6 0x55d76e6b2ed7 -E #7 0x55d76e694203 -E #8 0x55d76e662cc0 -E #9 0x55d76e663c9e -E #10 0x55d76ead8d3b -E #11 0x55d76eadccc2 -E #12 0x55d76eac5b6c -E #13 0x55d76eadd837 -E #14 0x55d76eaab10f -E #15 0x55d76eafa5a8 -E #16 0x55d76eafa770 -E #17 0x55d76eb0a1c6 -E #18 0x7f381d694a94 -E #19 0x7f381d721a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55d76eb0b34a -E #1 0x55d76e6216e0 -E #2 0x55d76e6703e6 -E #3 0x55d76e670681 -E #4 0x55d76e6b5b04 -E #5 0x55d76e69448d -E #6 0x55d76e6b2ed7 -E #7 0x55d76e694203 -E #8 0x55d76e662cc0 -E #9 0x55d76e663c9e -E #10 0x55d76ead8d3b -E #11 0x55d76eadccc2 -E #12 0x55d76eac5b6c -E #13 0x55d76eadd837 -E #14 0x55d76eaab10f -E #15 0x55d76eafa5a8 -E #16 0x55d76eafa770 -E #17 0x55d76eb0a1c6 -E #18 0x7f381d694a94 -E #19 0x7f381d721a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 120.06s (0:02:00) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-10_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-10_18-00/output.log deleted file mode 100644 index 59d6fcaa..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-10_18-00/output.log +++ /dev/null @@ -1,3111 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] -Hit:4 https://download.docker.com/linux/ubuntu focal InRelease -Hit:5 https://apt.releases.hashicorp.com focal InRelease -Ign:6 https://apt.vector.dev stable InRelease -Hit:7 https://apt.vector.dev stable Release -Get:8 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Get:13 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3742 kB] -Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1253 kB] -Get:16 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] -Fetched 5412 kB in 8s (720 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [27afe9a] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-09_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/f51d5c60-cfbf-11ef-a11a-0a6b4b768309" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Waiting for Cloudformation Stack..........................................[340] -Waiting for Cloudformation Stack..........................................[360] -Waiting for Cloudformation Stack..........................................[380] -Waiting for Cloudformation Stack..........................................[400] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [420 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-137510775.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 19.2 KiB/19.2 KiB (342.2 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 20.2 KiB/20.2 KiB (242.8 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -399fe729a9db: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -e57bde81af92: Waiting -062afa674fc9: Waiting -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -failed to register layer: write /usr/lib/x86_64-linux-gnu/libkrb5.so.3.3: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 13 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1303 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1822 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -d26e7144d9a5bf3fce052cf907ecedfdd8c7a802508342c2fc4b2fc3446a170d -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Fri Jan 10 18:32:27 PST 2025 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-01_18-00 -Pushing test results to nightly_logs/log_2025-01-10_18-00... -[main 3155097] Add nightly output for 2025-01-10_18-00 - 3 files changed, 1367 insertions(+), 911 deletions(-) - rename nightly_tests/nightly_logs/{log_2025-01-01_18-00 => log_2025-01-09_18-00}/output.log (73%) - rename nightly_tests/nightly_logs/{log_2025-01-01_18-00/nightly_output_2025-01-01_18-00.txt => log_2025-01-10_18-00/nightly_output_2025-01-10_18-00.txt} (66%) - create mode 100644 nightly_tests/nightly_logs/log_2025-01-10_18-00/output.log -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-10_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - 27afe9a..3155097 main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: CREATE_COMPLETE -Destroying unity-nightly Management Console and AWS resources... -Initializing Terraform... -Initializing the backend... - -Successfully configured the backend "s3"! Terraform will automatically -use this backend unless the backend configuration changes. -Initializing provider plugins... -- Finding latest version of hashicorp/aws... -- Finding latest version of hashicorp/null... -- Installing hashicorp/aws v5.83.1... -- Installed hashicorp/aws v5.83.1 (signed by HashiCorp) -- Installing hashicorp/null v3.2.3... -- Installed hashicorp/null v3.2.3 (signed by HashiCorp) -Terraform has created a lock file .terraform.lock.hcl to record the provider -selections it made above. Include this file in your version control repository -so that Terraform can guarantee to make the same selections by default when -you run "terraform init" in the future. - -Terraform has been successfully initialized! - -You may now begin working with Terraform. Try running "terraform plan" to see -any changes that are required for your infrastructure. All Terraform commands -should now work. - -If you ever set or change modules or backend configuration for Terraform, -rerun this command to reinitialize your working directory. If you forget, other -commands will detect it and remind you to do so if necessary. -Destroying resources... -module.default-unity-apigateway-UIKtf.null_resource.download_lambda_zip: Refreshing state... [id=4073213731880126915] -module.default-unity-cs-monitoring-lambda-Omzyf.null_resource.download_lambda_zip: Refreshing state... [id=8445870183169352022] -module.default-unity-proxy-OmbnC.aws_lb.httpd_alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/319f91ab8a9d038b] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Refreshing state... [id=sgr-05bb9efa22441ccc2] -module.default-unity-apigateway-UIKtf.aws_api_gateway_method.root_level_options_method: Refreshing state... [id=agm-bm0g766y50-pj71vb0fx5-OPTIONS] -module.default-unity-ui-mRScj.aws_lambda_invocation.proxy_lambda_invocation: Refreshing state... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-apigateway-UIKtf.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Refreshing state... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-ui-mRScj.aws_lb.main: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/325b3a46e1f261c3] -module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_ecs_stop_task_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Refreshing state... [id=sg-01f0183fe9e569924] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_uri: Refreshing state... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-apigateway-UIKtf.aws_api_gateway_deployment.api-gateway-deployment: Refreshing state... [id=rkbxwn] -module.default-unity-ui-mRScj.aws_alb_listener.front_end: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/325b3a46e1f261c3/9c3c81ce26cad8af] -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_health_checks_path: Refreshing state... [id=uv249t] -module.default-unity-proxy-OmbnC.aws_lb_listener.httpd_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/319f91ab8a9d038b/14d2b755c2277ef0] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_target.invoke_lambda: Refreshing state... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_rule.every_five_minutes: Refreshing state... [id=unity-nightly-every_five_minutes] -module.default-unity-apigateway-UIKtf.aws_lambda_function.cs_common_lambda_auth: Refreshing state... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250111021640278000000001] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.invoke_role_arn: Refreshing state... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-ui-mRScj.aws_alb_target_group.app: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1d69712548857786] -module.default-unity-proxy-OmbnC.aws_ecs_cluster.httpd_cluster: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_vpc_access_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.lambda_function_name: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Refreshing state... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-apigateway-UIKtf.aws_iam_role.iam_for_lambda_auth: Refreshing state... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250111020909775700000002] -module.default-unity-ui-mRScj.aws_ecs_task_definition.app: Refreshing state... [id=unity-nightly-ui-app] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role.lambda_execution_role: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.root_level_get_method_mock_integration: Refreshing state... [id=agi-bm0g766y50-pj71vb0fx5-OPTIONS] -module.default-unity-proxy-OmbnC.aws_iam_role.ecs_task_role: Refreshing state... [id=unity-nightly-ecs_task_role] -module.default-unity-ui-mRScj.aws_ecs_service.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-ui-mRScj.aws_security_group.ecs_sg: Refreshing state... [id=sg-0a4bddf1974adc13c] -module.default-unity-proxy-OmbnC.aws_iam_role.ecs_execution_role: Refreshing state... [id=unity-nightlyecs_execution_role] -module.default-unity-apigateway-UIKtf.aws_api_gateway_authorizer.unity_cs_common_authorizer: Refreshing state... [id=z8zhth] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.mgmt_endpoint: Refreshing state... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-proxy-OmbnC.aws_ecs_task_definition.httpd: Refreshing state... [id=httpd] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-apigateway-UIKtf.aws_api_gateway_rest_api.rest_api: Refreshing state... [id=bm0g766y50] -module.default-unity-proxy-OmbnC.aws_lambda_function.httpdlambda: Refreshing state... [id=unity-nightly-httpdproxymanagement] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Refreshing state... [id=sgr-0ae4f02c4ef04b9c0] -module.default-unity-proxy-OmbnC.aws_security_group.ecs_alb_sg: Refreshing state... [id=sg-05f4fb51d1ad8de5c] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250111020909842600000004] -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_api_path: Refreshing state... [id=vnwl7d] -module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Refreshing state... [id=km13k4] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_execution_role_policy: Refreshing state... [id=unity-nightlyecs_execution_role-20250111020909726900000001] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Refreshing state... [id=unity-nightly-ecs_task_role-20250111020909860000000005] -module.default-unity-ui-mRScj.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.management_console_url: Refreshing state... [id=/unity/unity/nightly/component/management-console] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_closevirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Refreshing state... [id=sgr-05958a8ef58035714] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Refreshing state... [id=sgr-0239b5aec8b293d85] -module.default-unity-proxy-OmbnC.aws_security_group.ecs_sg: Refreshing state... [id=sg-089e65c780ff968e9] -module.default-unity-proxy-OmbnC.aws_lb_target_group.httpd_tg: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250111020909789500000003] -module.default-unity-ui-mRScj.aws_ecs_cluster.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_permission.allow_eventbridge: Refreshing state... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Refreshing state... [id=sgr-0d4686413387e0e72] -module.default-unity-apigateway-UIKtf.aws_api_gateway_method.rest_api_method_for_health_check_method: Refreshing state... [id=agm-bm0g766y50-uv249t-GET] -module.default-unity-ui-mRScj.aws_ssm_parameter.uiux_ui_proxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-ui-mRScj.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role-20250111022610396900000001] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration_response.api_gateway_integration_response: Refreshing state... [id=agir-bm0g766y50-uv249t-GET-200] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_policy.lambda_ssm_s3_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-apigateway-UIKtf.aws_api_gateway_stage.api_gateway_stage: Refreshing state... [id=ags-bm0g766y50-default] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_function.unity_cs_monitoring_lambda: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_openvirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_management_path: Refreshing state... [id=v8bqxt] -module.default-unity-apigateway-UIKtf.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-bm0g766y50-uv249t-GET-200] -module.default-unity-proxy-OmbnC.aws_iam_role.lambda_iam_role: Refreshing state... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-OmbnC.aws_cloudwatch_log_group.proxyloggroup: Refreshing state... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.rest_api_integration_for_health_check: Refreshing state... [id=agi-bm0g766y50-uv249t-GET] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_authorizer.unity_cs_common_authorizer will be destroyed - - resource "aws_api_gateway_authorizer" "unity_cs_common_authorizer" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/bm0g766y50/authorizers/z8zhth" -> null - - authorizer_credentials = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - authorizer_result_ttl_in_seconds = 0 -> null - - authorizer_uri = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - id = "z8zhth" -> null - - identity_source = "method.request.header.Authorization" -> null - - name = "Unity_CS_Common_Authorizer" -> null - - provider_arns = [] -> null - - rest_api_id = "bm0g766y50" -> null - - type = "TOKEN" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_deployment.api-gateway-deployment will be destroyed - - resource "aws_api_gateway_deployment" "api-gateway-deployment" { - - created_date = "2025-01-11T02:24:53Z" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:bm0g766y50/dev" -> null - - id = "rkbxwn" -> null - - invoke_url = "https://bm0g766y50.execute-api.us-west-2.amazonaws.com/dev" -> null - - rest_api_id = "bm0g766y50" -> null - - stage_name = "dev" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.rest_api_integration_for_health_check will be destroyed - - resource "aws_api_gateway_integration" "rest_api_integration_for_health_check" { - - cache_key_parameters = [] -> null - - cache_namespace = "uv249t" -> null - - connection_id = "km13k4" -> null - - connection_type = "VPC_LINK" -> null - - content_handling = "CONVERT_TO_TEXT" -> null - - http_method = "GET" -> null - - id = "agi-bm0g766y50-uv249t-GET" -> null - - integration_http_method = "GET" -> null - - passthrough_behavior = "WHEN_NO_TEMPLATES" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "uv249t" -> null - - rest_api_id = "bm0g766y50" -> null - - timeout_milliseconds = 29000 -> null - - type = "HTTP" -> null - - uri = "http://unity-mc-nlb-unity-nightly-61ff308e2895214c.elb.us-west-2.amazonaws.com:8080/api/health_checks" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.root_level_get_method_mock_integration will be destroyed - - resource "aws_api_gateway_integration" "root_level_get_method_mock_integration" { - - cache_key_parameters = [] -> null - - cache_namespace = "pj71vb0fx5" -> null - - connection_type = "INTERNET" -> null - - http_method = "OPTIONS" -> null - - id = "agi-bm0g766y50-pj71vb0fx5-OPTIONS" -> null - - passthrough_behavior = "WHEN_NO_MATCH" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "pj71vb0fx5" -> null - - rest_api_id = "bm0g766y50" -> null - - timeout_milliseconds = 29000 -> null - - type = "MOCK" -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_integration_response.api_gateway_integration_response will be destroyed - - resource "aws_api_gateway_integration_response" "api_gateway_integration_response" { - - http_method = "GET" -> null - - id = "agir-bm0g766y50-uv249t-GET-200" -> null - - resource_id = "uv249t" -> null - - response_parameters = {} -> null - - response_templates = {} -> null - - rest_api_id = "bm0g766y50" -> null - - status_code = "200" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_method.rest_api_method_for_health_check_method will be destroyed - - resource "aws_api_gateway_method" "rest_api_method_for_health_check_method" { - - api_key_required = false -> null - - authorization = "CUSTOM" -> null - - authorization_scopes = [] -> null - - authorizer_id = "z8zhth" -> null - - http_method = "GET" -> null - - id = "agm-bm0g766y50-uv249t-GET" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "uv249t" -> null - - rest_api_id = "bm0g766y50" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_method.root_level_options_method will be destroyed - - resource "aws_api_gateway_method" "root_level_options_method" { - - api_key_required = false -> null - - authorization = "NONE" -> null - - authorization_scopes = [] -> null - - http_method = "OPTIONS" -> null - - id = "agm-bm0g766y50-pj71vb0fx5-OPTIONS" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "pj71vb0fx5" -> null - - rest_api_id = "bm0g766y50" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_method_response.response_200 will be destroyed - - resource "aws_api_gateway_method_response" "response_200" { - - http_method = "GET" -> null - - id = "agmr-bm0g766y50-uv249t-GET-200" -> null - - resource_id = "uv249t" -> null - - response_models = {} -> null - - response_parameters = {} -> null - - rest_api_id = "bm0g766y50" -> null - - status_code = "200" -> null - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_api_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_api_path" { - - id = "vnwl7d" -> null - - parent_id = "v8bqxt" -> null - - path = "/management/api" -> null - - path_part = "api" -> null - - rest_api_id = "bm0g766y50" -> null - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_health_checks_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_health_checks_path" { - - id = "uv249t" -> null - - parent_id = "vnwl7d" -> null - - path = "/management/api/health_checks" -> null - - path_part = "health_checks" -> null - - rest_api_id = "bm0g766y50" -> null - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_management_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_management_path" { - - id = "v8bqxt" -> null - - parent_id = "pj71vb0fx5" -> null - - path = "/management" -> null - - path_part = "management" -> null - - rest_api_id = "bm0g766y50" -> null - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_rest_api.rest_api will be destroyed - - resource "aws_api_gateway_rest_api" "rest_api" { - - api_key_source = "HEADER" -> null - - arn = "arn:aws:apigateway:us-west-2::/restapis/bm0g766y50" -> null - - binary_media_types = [] -> null - - created_date = "2025-01-11T02:18:12Z" -> null - - description = "Unity unity-nightly Project REST API Gateway" -> null - - disable_execute_api_endpoint = false -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:bm0g766y50" -> null - - id = "bm0g766y50" -> null - - name = "unity-unity-nightly-rest-api-gateway" -> null - - root_resource_id = "pj71vb0fx5" -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - - - endpoint_configuration { - - types = [ - - "REGIONAL", - ] -> null - - vpc_endpoint_ids = [] -> null - } - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_stage.api_gateway_stage will be destroyed - - resource "aws_api_gateway_stage" "api_gateway_stage" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/bm0g766y50/stages/default" -> null - - cache_cluster_enabled = false -> null - - deployment_id = "rkbxwn" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:bm0g766y50/default" -> null - - id = "ags-bm0g766y50-default" -> null - - invoke_url = "https://bm0g766y50.execute-api.us-west-2.amazonaws.com/default" -> null - - rest_api_id = "bm0g766y50" -> null - - stage_name = "default" -> null - - tags = {} -> null - - tags_all = {} -> null - - variables = {} -> null - - xray_tracing_enabled = false -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link will be destroyed - - resource "aws_api_gateway_vpc_link" "rest_api_health_check_vpc_link" { - - arn = "arn:aws:apigateway:us-west-2::/vpclinks/km13k4" -> null - - description = "mc-nlb-vpc-link-unity-nightly" -> null - - id = "km13k4" -> null - - name = "mc-nlb-vpc-link-unity-nightly" -> null - - tags = {} -> null - - tags_all = {} -> null - - target_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/net/unity-mc-nlb-unity-nightly/61ff308e2895214c", - ] -> null - } - - # module.default-unity-apigateway-UIKtf.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group will be destroyed - - resource "aws_cloudwatch_log_group" "cs_common_lambda_auth_log_group" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - id = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - log_group_class = "STANDARD" -> null - - name = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - retention_in_days = 14 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_iam_role.iam_for_lambda_auth will be destroyed - - resource "aws_iam_role" "iam_for_lambda_auth" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = [ - - "lambda.amazonaws.com", - - "apigateway.amazonaws.com", - ] - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-11T02:18:12Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-iam_for_lambda_auth" -> null - - managed_policy_arns = [] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-iam_for_lambda_auth" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFMS6JLUPR5" -> null - # (2 unchanged attributes hidden) - - - inline_policy { - - name = "unity-cs-lambda-auth-inline-policy" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "logs:PutLogEvents", - - "logs:CreateLogStream", - - "logs:CreateLogGroup", - - "lambda:InvokeFunction", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - } - } - - # module.default-unity-apigateway-UIKtf.aws_lambda_function.cs_common_lambda_auth will be destroyed - - resource "aws_lambda_function" "cs_common_lambda_auth" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer" -> null - - code_sha256 = "Bumcg++RUB+axI/ppSM5bFNknf8Jlc+l4e1pAQrYm98=" -> null - - filename = "ucs-common-lambda-auth.zip" -> null - - function_name = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - handler = "index.handler" -> null - - id = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - last_modified = "2025-01-11T02:18:21.753+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - runtime = "nodejs20.x" -> null - - skip_destroy = false -> null - - source_code_size = 212744 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "COGNITO_CLIENT_ID_LIST" = "deprecated" - - "COGNITO_GROUPS_ALLOWED" = (sensitive value) - - "COGNITO_USER_POOL_ID" = (sensitive value) - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_rest_api_id_parameter will be destroyed - - resource "aws_ssm_parameter" "api_gateway_rest_api_id_parameter" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - name = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_uri will be destroyed - - resource "aws_ssm_parameter" "api_gateway_uri" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/management/api-gateway/gateway-uri" -> null - - data_type = "text" -> null - - id = "/unity/cs/management/api-gateway/gateway-uri" -> null - - name = "/unity/cs/management/api-gateway/gateway-uri" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.aws_ssm_parameter.invoke_role_arn will be destroyed - - resource "aws_ssm_parameter" "invoke_role_arn" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - name = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-UIKtf.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "4073213731880126915" -> null - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_rule.every_five_minutes will be destroyed - - resource "aws_cloudwatch_event_rule" "every_five_minutes" { - - arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes" -> null - - is_enabled = true -> null - - name = "unity-nightly-every_five_minutes" -> null - - schedule_expression = "rate(5 minutes)" -> null - - state = "ENABLED" -> null - - tags = {} -> null - - tags_all = {} -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_target.invoke_lambda will be destroyed - - resource "aws_cloudwatch_event_target" "invoke_lambda" { - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes-invoke_lambda_function" -> null - - rule = "unity-nightly-every_five_minutes" -> null - - target_id = "invoke_lambda_function" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_policy.lambda_ssm_s3_policy will be destroyed - - resource "aws_iam_policy" "lambda_ssm_s3_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - attachment_count = 1 -> null - - description = "Policy to allow Lambda to read/write SSM and send objects to S3" -> null - - id = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ssm:GetParameter", - - "ssm:GetParameters", - - "ssm:PutParameter", - - "ssm:DescribeParameters", - ] - - Effect = "Allow" - - Resource = "*" - }, - - { - - Action = [ - - "s3:PutObject", - - "s3:GetObject", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFGXVMQKLWZ" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role.lambda_execution_role will be destroyed - - resource "aws_iam_role" "lambda_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-11T02:16:39Z" -> null - - force_detach_policies = false -> null - - id = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFB5OB2IVTM" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role_policy_attachment.attach_ssm_s3_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "attach_ssm_s3_policy" { - - id = "unity-unity-nightly-cs-monitoring-lambda-role-20250111021640278000000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - role = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_function.unity_cs_monitoring_lambda will be destroyed - - resource "aws_lambda_function" "unity_cs_monitoring_lambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - code_sha256 = "o4yFvQ976RHf3G1ExiEJg2pTNaiWfKNl9n5QvhIBvxc=" -> null - - filename = ".terraform/modules/default-unity-cs-monitoring-lambda-Omzyf/unity-cs-monitoring-lambda.zip" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - handler = "lambda_function.lambda_handler" -> null - - id = "unity-unity-nightly-cs-monitoring-lambda" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda/invocations" -> null - - last_modified = "2025-01-11T02:16:48.490+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - runtime = "python3.12" -> null - - skip_destroy = false -> null - - source_code_size = 15016734 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 300 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "PROJECT" = "unity" - - "VENUE" = "nightly" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-unity-nightly-cs-monitoring-lambda" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_permission.allow_eventbridge will be destroyed - - resource "aws_lambda_permission" "allow_eventbridge" { - - action = "lambda:InvokeFunction" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - id = "AllowExecutionFromEventBridge" -> null - - principal = "events.amazonaws.com" -> null - - source_arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - statement_id = "AllowExecutionFromEventBridge" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Omzyf.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "8445870183169352022" -> null - } - - # module.default-unity-proxy-OmbnC.aws_cloudwatch_log_group.proxyloggroup will be destroyed - - resource "aws_cloudwatch_log_group" "proxyloggroup" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/ecs/unity-nightly-managementproxy" -> null - - id = "/ecs/unity-nightly-managementproxy" -> null - - log_group_class = "STANDARD" -> null - - name = "/ecs/unity-nightly-managementproxy" -> null - - retention_in_days = 0 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ecs_cluster.httpd_cluster will be destroyed - - resource "aws_ecs_cluster" "httpd_cluster" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - name = "unity-nightly-httpd-cluster" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service will be destroyed - - resource "aws_ecs_service" "httpd_service" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 1 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service" -> null - - launch_type = "FARGATE" -> null - - name = "httpd-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:342" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "unity-nightly-httpd-task" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-089e65c780ff968e9", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-proxy-OmbnC.aws_ecs_task_definition.httpd will be destroyed - - resource "aws_ecs_task_definition" "httpd" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:342" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd" -> null - - container_definitions = jsonencode( - [ - - { - - environment = [ - - { - - name = "UNITY_PROJECT" - - value = "unity" - }, - - { - - name = "UNITY_VENUE" - - value = "nightly" - }, - ] - - essential = true - - image = "ghcr.io/unity-sds/unity-proxy/httpd-proxy:0.16.0" - - logConfiguration = { - - logDriver = "awslogs" - - options = { - - awslogs-group = "/ecs/unity-nightly-managementproxy" - - awslogs-region = "us-west-2" - - awslogs-stream-prefix = "ecs" - } - } - - mountPoints = [] - - name = "unity-nightly-httpd-task" - - portMappings = [ - - { - - containerPort = 8080 - - hostPort = 8080 - - protocol = "tcp" - }, - ] - - systemControls = [] - - volumesFrom = [] - }, - ] - ) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - family = "httpd" -> null - - id = "httpd" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 342 -> null - - skip_destroy = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - track_latest = false -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_ecs_stop_task_policy will be destroyed - - resource "aws_iam_policy" "lambda_ecs_stop_task_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to stop ECS tasks" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - name = "unity-nightly-lambda_ecs_stop_task_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ecs:ListTasks", - - "ecs:StopTask", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFOIGAAFSF2" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_vpc_access_policy will be destroyed - - resource "aws_iam_policy" "lambda_vpc_access_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to manage ENIs for VPC access" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - name = "unity-nightly-lambda_vpc_access_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ec2:CreateNetworkInterface", - - "ec2:DescribeNetworkInterfaces", - - "ec2:DeleteNetworkInterface", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFMOSSPYIF3" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-OmbnC.aws_iam_role.ecs_execution_role will be destroyed - - resource "aws_iam_role" "ecs_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-11T02:09:09Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightlyecs_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightlyecs_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFKF7SR6MAI" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_iam_role.ecs_task_role will be destroyed - - resource "aws_iam_role" "ecs_task_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-11T02:09:09Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ecs_task_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ecs_task_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFKMPGQVV3E" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_iam_role.lambda_iam_role will be destroyed - - resource "aws_iam_role" "lambda_iam_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-11T02:09:09Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-lambda_iam_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy", - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy", - - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-lambda_iam_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFKPNDB7IE6" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_execution_role_policy" { - - id = "unity-nightlyecs_execution_role-20250111020909726900000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightlyecs_execution_role" -> null - } - - # module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_ssm_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_ssm_role_policy" { - - id = "unity-nightly-ecs_task_role-20250111020909860000000005" -> null - - policy_arn = "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess" -> null - - role = "unity-nightly-ecs_task_role" -> null - } - - # module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_base_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_base_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250111020909842600000004" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250111020909775700000002" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_vpc_access_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250111020909789500000003" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-OmbnC.aws_lambda_function.httpdlambda will be destroyed - - resource "aws_lambda_function" "httpdlambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement" -> null - - code_sha256 = "eFUx8dhh2JtcorJ/1+vHlS/cAehBGd6o5Kvf6EpZha4=" -> null - - filename = ".terraform/modules/default-unity-proxy-OmbnC/lambda.zip" -> null - - function_name = "unity-nightly-httpdproxymanagement" -> null - - handler = "lambda.lambda_handler" -> null - - id = "unity-nightly-httpdproxymanagement" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement/invocations" -> null - - last_modified = "2025-01-11T02:12:23.655+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - runtime = "python3.8" -> null - - skip_destroy = false -> null - - source_code_size = 687 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "CLUSTER_NAME" = "unity-nightly-httpd-cluster" - - "SERVICE_NAME" = "httpd-service" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-httpdproxymanagement" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - - - vpc_config { - - ipv6_allowed_for_dual_stack = false -> null - - security_group_ids = [ - - "sg-01f0183fe9e569924", - ] -> null - - subnet_ids = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - } - } - - # module.default-unity-proxy-OmbnC.aws_lb.httpd_alb will be destroyed - - resource "aws_lb" "httpd_alb" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/319f91ab8a9d038b" -> null - - arn_suffix = "app/unity-nightly-httpd-alb/319f91ab8a9d038b" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-httpd-alb-137510775.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/319f91ab8a9d038b" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-httpd-alb" -> null - - preserve_host_header = true -> null - - security_groups = [ - - "sg-05f4fb51d1ad8de5c", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-proxy-OmbnC.aws_lb_listener.httpd_listener will be destroyed - - resource "aws_lb_listener" "httpd_listener" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/319f91ab8a9d038b/14d2b755c2277ef0" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/319f91ab8a9d038b/14d2b755c2277ef0" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/319f91ab8a9d038b" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc" -> null - - type = "forward" -> null - } - } - - # module.default-unity-proxy-OmbnC.aws_lb_target_group.httpd_tg will be destroyed - - resource "aws_lb_target_group" "httpd_tg" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc" -> null - - arn_suffix = "targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/319f91ab8a9d038b", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-httpd-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 2 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-proxy-OmbnC.aws_security_group.ecs_alb_sg will be destroyed - - resource "aws_security_group" "ecs_alb_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-05f4fb51d1ad8de5c" -> null - - description = "Security group for ECS service ALB" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-05f4fb51d1ad8de5c" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_alb_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-OmbnC.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-089e65c780ff968e9" -> null - - description = "Security group for ECS service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-089e65c780ff968e9" -> null - - ingress = [ - - { - - cidr_blocks = [] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [ - - "sg-05f4fb51d1ad8de5c", - ] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_service_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg will be destroyed - - resource "aws_security_group" "lambda_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-01f0183fe9e569924" -> null - - description = "Security group for httpd lambda service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-01f0183fe9e569924" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 2049 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 2049 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-httpd_lambda_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ssm_parameter.lambda_function_name will be destroyed - - resource "aws_ssm_parameter" "lambda_function_name" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - name = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ssm_parameter.management_console_url will be destroyed - - resource "aws_ssm_parameter" "management_console_url" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/component/management-console" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/component/management-console" -> null - - name = "/unity/unity/nightly/component/management-console" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_closevirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_closevirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_config will be destroyed - - resource "aws_ssm_parameter" "managementproxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_openvirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_openvirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_ssm_parameter.mgmt_endpoint will be destroyed - - resource "aws_ssm_parameter" "mgmt_endpoint" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - name = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-05958a8ef58035714" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-05958a8ef58035714" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-05f4fb51d1ad8de5c" -> null - - security_group_rule_id = "sgr-05958a8ef58035714" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0ae4f02c4ef04b9c0" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-0ae4f02c4ef04b9c0" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-089e65c780ff968e9" -> null - - security_group_rule_id = "sgr-0ae4f02c4ef04b9c0" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "alb_all_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0d4686413387e0e72" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 8080 -> null - - id = "sgr-0d4686413387e0e72" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-05f4fb51d1ad8de5c" -> null - - security_group_rule_id = "sgr-0d4686413387e0e72" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-05bb9efa22441ccc2" -> null - - from_port = 8080 -> null - - id = "sgr-05bb9efa22441ccc2" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-05f4fb51d1ad8de5c" -> null - - security_group_id = "sg-089e65c780ff968e9" -> null - - security_group_rule_id = "sgr-05bb9efa22441ccc2" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_mc_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0239b5aec8b293d85" -> null - - from_port = 8080 -> null - - id = "sgr-0239b5aec8b293d85" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-089e65c780ff968e9" -> null - - security_group_id = "sg-0a2159c975aae1bf1" -> null - - security_group_rule_id = "sgr-0239b5aec8b293d85" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-ui-mRScj.aws_alb_listener.front_end will be destroyed - - resource "aws_alb_listener" "front_end" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/325b3a46e1f261c3/9c3c81ce26cad8af" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/325b3a46e1f261c3/9c3c81ce26cad8af" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/325b3a46e1f261c3" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1d69712548857786" -> null - - type = "forward" -> null - } - } - - # module.default-unity-ui-mRScj.aws_alb_target_group.app will be destroyed - - resource "aws_alb_target_group" "app" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1d69712548857786" -> null - - arn_suffix = "targetgroup/unity-nightly-ui-tg/1d69712548857786" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1d69712548857786" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/325b3a46e1f261c3", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-ui-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 3 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-ui-mRScj.aws_ecs_cluster.main will be destroyed - - resource "aws_ecs_cluster" "main" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - name = "unity-nightly-ui-cluster" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-ui-mRScj.aws_ecs_service.main will be destroyed - - resource "aws_ecs_service" "main" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 2 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service" -> null - - launch_type = "FARGATE" -> null - - name = "unity-nightly-ui-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:20" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "ui" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1d69712548857786" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-0a4bddf1974adc13c", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-ui-mRScj.aws_ecs_task_definition.app will be destroyed - - resource "aws_ecs_task_definition" "app" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:20" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app" -> null - - container_definitions = (sensitive value) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - family = "unity-nightly-ui-app" -> null - - id = "unity-nightly-ui-app" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 20 -> null - - skip_destroy = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - track_latest = false -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-ui-mRScj.aws_iam_role.ecs_task_execution_role will be destroyed - - resource "aws_iam_role" "ecs_task_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-11T02:26:09Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ui-ecs_task_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ui-ecs_task_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - unique_id = "AROA4S74LNWFF52RGYLP3" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-ui-mRScj.aws_iam_role_policy_attachment.ecs_task_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_task_execution_role_policy" { - - id = "unity-nightly-ui-ecs_task_execution_role-20250111022610396900000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightly-ui-ecs_task_execution_role" -> null - } - - # module.default-unity-ui-mRScj.aws_lambda_invocation.proxy_lambda_invocation will be destroyed - - resource "aws_lambda_invocation" "proxy_lambda_invocation" { - - function_name = "unity-nightly-httpdproxymanagement" -> null - - id = "unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e" -> null - - lifecycle_scope = "CREATE_ONLY" -> null - - qualifier = "$LATEST" -> null - - result = jsonencode( - { - - body = "ECS task restarted" - - statusCode = 200 - } - ) -> null - - terraform_key = "tf" -> null - - triggers = { - - "redeployment" = (sensitive value) - } -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-mRScj.aws_lb.main will be destroyed - - resource "aws_lb" "main" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/325b3a46e1f261c3" -> null - - arn_suffix = "app/unity-nightly-ui-lb/325b3a46e1f261c3" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-ui-lb-902593696.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/325b3a46e1f261c3" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-ui-lb" -> null - - preserve_host_header = false -> null - - security_groups = [ - - "sg-0a4bddf1974adc13c", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-ui-mRScj.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0a4bddf1974adc13c" -> null - - description = "Security group for the UI ECS Service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0a4bddf1974adc13c" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ui-ecs-sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-mRScj.aws_ssm_parameter.uiux_ui_proxy_config will be destroyed - - resource "aws_ssm_parameter" "uiux_ui_proxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 72 to destroy. -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destroying... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-apigateway-UIKtf.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destroying... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_uri: Destroying... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destroying... [id=unity-nightly-ecs_task_role-20250111020909860000000005] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.invoke_role_arn: Destroying... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration_response.api_gateway_integration_response: Destroying... [id=agir-bm0g766y50-uv249t-GET-200] -module.default-unity-ui-mRScj.aws_ecs_service.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250111020909775700000002] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destroying... [id=sgr-05bb9efa22441ccc2] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destroying... [id=sgr-05958a8ef58035714] -module.default-unity-apigateway-UIKtf.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destroying... [id=sgr-0239b5aec8b293d85] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration_response.api_gateway_integration_response: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_ssm_parameter.management_console_url: Destroying... [id=/unity/unity/nightly/component/management-console] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_ssm_parameter.mgmt_endpoint: Destroying... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.invoke_role_arn: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.root_level_get_method_mock_integration: Destroying... [id=agi-bm0g766y50-pj71vb0fx5-OPTIONS] -module.default-unity-apigateway-UIKtf.aws_ssm_parameter.api_gateway_uri: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250111020909789500000003] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.root_level_get_method_mock_integration: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250111020909842600000004] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.management_console_url: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_permission.allow_eventbridge: Destroying... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.mgmt_endpoint: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destroying... [id=sgr-0d4686413387e0e72] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_permission.allow_eventbridge: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_lambda_invocation.proxy_lambda_invocation: Destroying... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-ui-mRScj.aws_lambda_invocation.proxy_lambda_invocation: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_target.invoke_lambda: Destroying... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_ssm_parameter.lambda_function_name: Destroying... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destroying... [id=sgr-0ae4f02c4ef04b9c0] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_target.invoke_lambda: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destroying... [id=unity-nightlyecs_execution_role-20250111020909726900000001] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_method_response.response_200: Destroying... [id=agmr-bm0g766y50-uv249t-GET-200] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.lambda_function_name: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_stage.api_gateway_stage: Destroying... [id=ags-bm0g766y50-default] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_method.root_level_options_method: Destroying... [id=agm-bm0g766y50-pj71vb0fx5-OPTIONS] -module.default-unity-apigateway-UIKtf.aws_api_gateway_method_response.response_200: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_ssm_parameter.uiux_ui_proxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_function.unity_cs_monitoring_lambda: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-OmbnC.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_rule.every_five_minutes: Destroying... [id=unity-nightly-every_five_minutes] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_cloudwatch_event_rule.every_five_minutes: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_lambda_function.httpdlambda: Destroying... [id=unity-nightly-httpdproxymanagement] -module.default-unity-apigateway-UIKtf.aws_api_gateway_method.root_level_options_method: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_ecs_stop_task_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_vpc_access_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-ui-mRScj.aws_ssm_parameter.uiux_ui_proxy_config: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_stage.api_gateway_stage: Destruction complete after 1s -module.default-unity-apigateway-UIKtf.aws_api_gateway_deployment.api-gateway-deployment: Destroying... [id=rkbxwn] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_lambda_function.unity_cs_monitoring_lambda: Destruction complete after 1s -module.default-unity-cs-monitoring-lambda-Omzyf.null_resource.download_lambda_zip: Destroying... [id=8445870183169352022] -module.default-unity-cs-monitoring-lambda-Omzyf.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250111021640278000000001] -module.default-unity-proxy-OmbnC.aws_lambda_function.httpdlambda: Destruction complete after 1s -module.default-unity-proxy-OmbnC.aws_iam_role.lambda_iam_role: Destroying... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Destroying... [id=sg-01f0183fe9e569924] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_policy.lambda_ssm_s3_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role.lambda_execution_role: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_vpc_access_policy: Destruction complete after 1s -module.default-unity-proxy-OmbnC.aws_iam_policy.lambda_ecs_stop_task_policy: Destruction complete after 1s -module.default-unity-apigateway-UIKtf.aws_api_gateway_deployment.api-gateway-deployment: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.rest_api_integration_for_health_check: Destroying... [id=agi-bm0g766y50-uv249t-GET] -module.default-unity-apigateway-UIKtf.aws_api_gateway_integration.rest_api_integration_for_health_check: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_method.rest_api_method_for_health_check_method: Destroying... [id=agm-bm0g766y50-uv249t-GET] -module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destroying... [id=km13k4] -module.default-unity-apigateway-UIKtf.aws_api_gateway_method.rest_api_method_for_health_check_method: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destroying... [id=z8zhth] -module.default-unity-proxy-OmbnC.aws_iam_role.lambda_iam_role: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destroying... [id=uv249t] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_policy.lambda_ssm_s3_policy: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_api_path: Destroying... [id=vnwl7d] -module.default-unity-apigateway-UIKtf.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_lambda_function.cs_common_lambda_auth: Destroying... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-Omzyf.aws_iam_role.lambda_execution_role: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_api_path: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_management_path: Destroying... [id=v8bqxt] -module.default-unity-apigateway-UIKtf.aws_api_gateway_resource.rest_api_resource_management_path: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_api_gateway_rest_api.rest_api: Destroying... [id=bm0g766y50] -module.default-unity-apigateway-UIKtf.aws_lambda_function.cs_common_lambda_auth: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.null_resource.download_lambda_zip: Destroying... [id=4073213731880126915] -module.default-unity-apigateway-UIKtf.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_iam_role.iam_for_lambda_auth: Destroying... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-UIKtf.aws_api_gateway_rest_api.rest_api: Destruction complete after 0s -module.default-unity-apigateway-UIKtf.aws_iam_role.iam_for_lambda_auth: Destruction complete after 1s -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 10s elapsed] -module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=km13k4, 10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 20s elapsed] -module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=km13k4, 20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 30s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 30s elapsed] -module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=km13k4, 30s elapsed] -module.default-unity-apigateway-UIKtf.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destruction complete after 36s -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 40s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 50s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m0s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 1m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 1m10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 1m20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m30s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 1m30s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 1m40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m40s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m50s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 1m50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m0s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 2m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 2m10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 2m20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m30s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 2m30s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 2m40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m40s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m50s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 2m50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m0s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 3m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 3m10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 3m20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m30s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 3m30s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 3m40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m40s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m50s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 3m50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m0s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 4m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 4m10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 4m20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m30s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 4m30s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 4m40s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m50s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 4m50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m0s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 5m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 5m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 5m20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m30s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 5m30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m30s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Still destroying... [id=sg-01f0183fe9e569924, 5m40s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.lambda_sg: Destruction complete after 5m43s -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m10s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m20s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m20s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m30s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m30s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m40s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m40s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m50s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m50s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m0s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m0s elapsed] -module.default-unity-ui-mRScj.aws_ecs_service.main: Destruction complete after 7m9s -module.default-unity-ui-mRScj.aws_alb_listener.front_end: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/325b3a46e1f261c3/9c3c81ce26cad8af] -module.default-unity-ui-mRScj.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destroying... [id=unity-nightly-ui-ecs_task_execution_role-20250111022610396900000001] -module.default-unity-ui-mRScj.aws_ecs_cluster.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-ui-mRScj.aws_ecs_task_definition.app: Destroying... [id=unity-nightly-ui-app] -module.default-unity-ui-mRScj.aws_ecs_task_definition.app: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_ecs_cluster.main: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_alb_listener.front_end: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_alb_target_group.app: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1d69712548857786] -module.default-unity-ui-mRScj.aws_lb.main: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/325b3a46e1f261c3] -module.default-unity-ui-mRScj.aws_alb_target_group.app: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destruction complete after 0s -module.default-unity-ui-mRScj.aws_iam_role.ecs_task_execution_role: Destroying... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-ui-mRScj.aws_iam_role.ecs_task_execution_role: Destruction complete after 1s -module.default-unity-ui-mRScj.aws_lb.main: Destruction complete after 2s -module.default-unity-ui-mRScj.aws_security_group.ecs_sg: Destroying... [id=sg-0a4bddf1974adc13c] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m10s elapsed] -module.default-unity-proxy-OmbnC.aws_ecs_service.httpd_service: Destruction complete after 7m18s -module.default-unity-proxy-OmbnC.aws_lb_listener.httpd_listener: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/319f91ab8a9d038b/14d2b755c2277ef0] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-OmbnC.aws_ecs_cluster.httpd_cluster: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-OmbnC.aws_security_group.ecs_sg: Destroying... [id=sg-089e65c780ff968e9] -module.default-unity-proxy-OmbnC.aws_ecs_task_definition.httpd: Destroying... [id=httpd] -module.default-unity-proxy-OmbnC.aws_ecs_task_definition.httpd: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role.ecs_task_role: Destroying... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-OmbnC.aws_iam_role.ecs_execution_role: Destroying... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-OmbnC.aws_cloudwatch_log_group.proxyloggroup: Destroying... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_config: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_closevirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-OmbnC.aws_cloudwatch_log_group.proxyloggroup: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_lb_listener.httpd_listener: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_lb.httpd_alb: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/319f91ab8a9d038b] -module.default-unity-proxy-OmbnC.aws_ecs_cluster.httpd_cluster: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_lb_target_group.httpd_tg: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/625eae4fd7a3acbc] -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_closevirtualhost: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_openvirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-OmbnC.aws_lb_target_group.httpd_tg: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_ssm_parameter.managementproxy_openvirtualhost: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_security_group.ecs_sg: Destruction complete after 0s -module.default-unity-proxy-OmbnC.aws_iam_role.ecs_task_role: Destruction complete after 1s -module.default-unity-proxy-OmbnC.aws_iam_role.ecs_execution_role: Destruction complete after 1s -module.default-unity-proxy-OmbnC.aws_lb.httpd_alb: Destruction complete after 1s -module.default-unity-proxy-OmbnC.aws_security_group.ecs_alb_sg: Destroying... [id=sg-05f4fb51d1ad8de5c] -module.default-unity-ui-mRScj.aws_security_group.ecs_sg: Still destroying... [id=sg-0a4bddf1974adc13c, 10s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-05f4fb51d1ad8de5c, 10s elapsed] -module.default-unity-ui-mRScj.aws_security_group.ecs_sg: Still destroying... [id=sg-0a4bddf1974adc13c, 20s elapsed] -module.default-unity-proxy-OmbnC.aws_security_group.ecs_alb_sg: Destruction complete after 17s -module.default-unity-ui-mRScj.aws_security_group.ecs_sg: Destruction complete after 26s - -Destroy complete! Resources: 72 destroyed. -Deleting DynamoDB table unity-nightly-terraform-state... -{ - "TableDescription": { - "TableName": "unity-nightly-terraform-state", - "TableStatus": "DELETING", - "ProvisionedThroughput": { - "NumberOfDecreasesToday": 0, - "ReadCapacityUnits": 5, - "WriteCapacityUnits": 5 - }, - "TableSizeBytes": 0, - "ItemCount": 0, - "TableArn": "arn:aws:dynamodb:us-west-2:865428270474:table/unity-nightly-terraform-state", - "TableId": "01dd0446-e92c-4cb1-b64b-1c1b1ede2f4e", - "DeletionProtectionEnabled": false - } -} -DynamoDB table unity-nightly-terraform-state was deleted successfully -/home/ubuntu/unity-cs-infra/nightly_tests -Terraform operations completed. Namespace directory and all Terraform files have been deleted. -MC Teardown: Completed in 484 seconds -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] -Waiting for Cloudformation Stack Termination..............................[40] -Waiting for Cloudformation Stack Termination..............................[60] -Waiting for Cloudformation Stack Termination..............................[80] -Waiting for Cloudformation Stack Termination..............................[100] -Waiting for Cloudformation Stack Termination..............................[120] -Waiting for Cloudformation Stack Termination..............................[140] -Waiting for Cloudformation Stack Termination..............................[160] -Waiting for Cloudformation Stack Termination..............................[180] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 200s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 20.2 KiB/20.2 KiB (200.6 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 19.2 KiB/19.2 KiB (259.1 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: e960f250-cfc0-11ef-bfbe-0a8e720747eb, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-11T02:08:12.774000+00:00, - ResourceStatus: CREATE_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_COMPLETE-2025-01-11T02:08:11.515Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-11T02:08:11.515000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: DeployerAutoScalingGroup-99337056-af09-47f0-863d-f1af591016e7, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-11T02:08:11.058000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received SUCCESS signal with UniqueId i-0de90fc63a5a7e66a - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-11T02:03:56.402Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-11T02:03:56.402000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: 4f1177b0-cfc0-11ef-a221-06f48a69277f, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-11T02:03:53.899000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-4b7bad6f-c773-4aa1-ab74-2badc8111ced, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-11T02:03:53.858000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-11T02:03:44.557Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-11T02:03:44.557000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-11T02:03:43.382Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-11T02:03:43.382000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-11T02:03:42.501Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-11T02:03:42.501000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-11T02:03:42.194Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-11T02:03:42.194000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-11T02:03:41.644Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-11T02:03:41.644000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-11T02:03:41.385Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-11T02:03:41.385000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-11T02:03:41.026Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-11T02:03:41.026000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-11T02:03:40.395Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-11T02:03:40.395000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-11T02:03:39.883Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-11T02:03:39.883000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-11T02:01:53.909Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-11T02:01:53.909000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-11T02:01:53.748Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-11T02:01:53.748000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-11T02:01:51.947Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-11T02:01:51.947000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-11T02:01:51.434Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-11T02:01:51.434000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-fc1838c6-6939-4e20-a4c3-8dd3d4ad5068, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-11T02:01:46.522000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-8e1a6d86-574f-42d2-a600-87ad6f4e40af, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-11T02:01:46.430000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-11T02:01:45.884Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-11T02:01:45.884000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-11T02:01:45.587Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-11T02:01:45.587000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-11T02:01:44.958Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-11T02:01:44.958000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-11T02:01:44.487Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-11T02:01:44.487000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-11T02:01:44.265Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-11T02:01:44.265000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-11T02:01:43.214Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-11T02:01:43.214000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-11T02:01:42.666Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-11T02:01:42.666000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-11T02:01:37.580Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:37.580000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-11T02:01:37.281Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-11T02:01:37.281000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-11T02:01:34.409Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-11T02:01:34.409000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-11T02:01:33.846Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:33.846000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-11T02:01:31.792Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:31.792000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-11T02:01:29.452Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:29.452000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-eb0327b0-eb5e-4527-bf17-e5ab75ccbe62, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:28.888000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-11T02:01:28.439Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-11T02:01:28.439000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-11T02:01:28.256Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:28.256000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-11T02:01:27.224Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-11T02:01:27.224000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-11T02:01:27.003Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-11T02:01:27.003000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-11T02:01:26.038Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-11T02:01:26.038000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-11T02:01:26.036Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-11T02:01:26.036000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-11T02:01:26.025Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-11T02:01:26.025000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-11T02:01:26.006Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-11T02:01:26.006000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: f51f7f40-cfbf-11ef-a11a-0a6b4b768309, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-11T02:01:23.102000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14589 100 11 100 14578 57 76726 --:--:-- --:--:-- --:--:-- 77190 -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-11_18-00/nightly_output_2025-01-11_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-11_18-00/nightly_output_2025-01-11_18-00.txt deleted file mode 100644 index db587dd7..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-11_18-00/nightly_output_2025-01-11_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [3155097] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [380 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-755088592.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-755088592.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-755088592.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-755088592.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b1ee40e34a -E #1 0x55b1edf246e0 -E #2 0x55b1edf733e6 -E #3 0x55b1edf73681 -E #4 0x55b1edfb8b04 -E #5 0x55b1edf9748d -E #6 0x55b1edfb5ed7 -E #7 0x55b1edf97203 -E #8 0x55b1edf65cc0 -E #9 0x55b1edf66c9e -E #10 0x55b1ee3dbd3b -E #11 0x55b1ee3dfcc2 -E #12 0x55b1ee3c8b6c -E #13 0x55b1ee3e0837 -E #14 0x55b1ee3ae10f -E #15 0x55b1ee3fd5a8 -E #16 0x55b1ee3fd770 -E #17 0x55b1ee40d1c6 -E #18 0x7f52971dea94 -E #19 0x7f529726ba34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b1ee40e34a -E #1 0x55b1edf246e0 -E #2 0x55b1edf733e6 -E #3 0x55b1edf73681 -E #4 0x55b1edfb8b04 -E #5 0x55b1edf9748d -E #6 0x55b1edfb5ed7 -E #7 0x55b1edf97203 -E #8 0x55b1edf65cc0 -E #9 0x55b1edf66c9e -E #10 0x55b1ee3dbd3b -E #11 0x55b1ee3dfcc2 -E #12 0x55b1ee3c8b6c -E #13 0x55b1ee3e0837 -E #14 0x55b1ee3ae10f -E #15 0x55b1ee3fd5a8 -E #16 0x55b1ee3fd770 -E #17 0x55b1ee40d1c6 -E #18 0x7f52971dea94 -E #19 0x7f529726ba34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b1ee40e34a -E #1 0x55b1edf246e0 -E #2 0x55b1edf733e6 -E #3 0x55b1edf73681 -E #4 0x55b1edfb8b04 -E #5 0x55b1edf9748d -E #6 0x55b1edfb5ed7 -E #7 0x55b1edf97203 -E #8 0x55b1edf65cc0 -E #9 0x55b1edf66c9e -E #10 0x55b1ee3dbd3b -E #11 0x55b1ee3dfcc2 -E #12 0x55b1ee3c8b6c -E #13 0x55b1ee3e0837 -E #14 0x55b1ee3ae10f -E #15 0x55b1ee3fd5a8 -E #16 0x55b1ee3fd770 -E #17 0x55b1ee40d1c6 -E #18 0x7f52971dea94 -E #19 0x7f529726ba34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 119.20s (0:01:59) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-11_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-11_18-00/output.log deleted file mode 100644 index f5dabd11..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-11_18-00/output.log +++ /dev/null @@ -1,3119 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Hit:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease -Hit:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease -Ign:4 https://apt.vector.dev stable InRelease -Hit:5 https://apt.vector.dev stable Release -Hit:6 https://download.docker.com/linux/ubuntu focal InRelease -Hit:7 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease -Hit:8 https://apt.releases.hashicorp.com focal InRelease -Hit:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease -Hit:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease -Hit:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease -Hit:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease -Hit:14 http://security.ubuntu.com/ubuntu focal-security InRelease -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [3155097] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-10_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/1a960130-d089-11ef-a63f-06a5c178ad1f" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Waiting for Cloudformation Stack..........................................[340] -Waiting for Cloudformation Stack..........................................[360] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [380 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-755088592.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 18.1 KiB/18.1 KiB (305.5 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 19.2 KiB/19.2 KiB (169.5 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -2bd15bbb2a60: Pull complete -9a128b13f9b1: Pull complete -181410dbbb3c: Pull complete -aee6dd6c6c6c: Pull complete -da6d2e56f44d: Pull complete -a21cc67e5ca6: Pull complete -51609b3a85b2: Pull complete -e57bde81af92: Pull complete -062afa674fc9: Pull complete -399fe729a9db: Pull complete -d8733e6f38f7: Pull complete -failed to register layer: write /usr/lib/x86_64-linux-gnu/libLLVM-17.so.1: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 13 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Attempt 14 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Attempt 15 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Attempt 16 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Attempt 17 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1412 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1881 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -c2a6c0156abc4e2a590b9a759ad6220407af69b69831ccbe42f6641488a2a879 -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Sat Jan 11 18:33:28 PST 2025 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-03_18-00 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-02_18-00 -Pushing test results to nightly_logs/log_2025-01-11_18-00... -[main 5621426] Add nightly output for 2025-01-11_18-00 - 5 files changed, 1260 insertions(+), 4064 deletions(-) - delete mode 100644 nightly_tests/nightly_logs/log_2025-01-02_18-00/output.log - delete mode 100644 nightly_tests/nightly_logs/log_2025-01-03_18-00/nightly_output_2025-01-03_18-00.txt - rename nightly_tests/nightly_logs/{log_2025-01-03_18-00 => log_2025-01-10_18-00}/output.log (75%) - rename nightly_tests/nightly_logs/{log_2025-01-02_18-00/nightly_output_2025-01-02_18-00.txt => log_2025-01-11_18-00/nightly_output_2025-01-11_18-00.txt} (62%) - create mode 100644 nightly_tests/nightly_logs/log_2025-01-11_18-00/output.log -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-11_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - 3155097..5621426 main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: CREATE_COMPLETE -Destroying unity-nightly Management Console and AWS resources... -Initializing Terraform... -Initializing the backend... - -Successfully configured the backend "s3"! Terraform will automatically -use this backend unless the backend configuration changes. -Initializing provider plugins... -- Finding latest version of hashicorp/aws... -- Finding latest version of hashicorp/null... -- Installing hashicorp/aws v5.83.1... -- Installed hashicorp/aws v5.83.1 (signed by HashiCorp) -- Installing hashicorp/null v3.2.3... -- Installed hashicorp/null v3.2.3 (signed by HashiCorp) -Terraform has created a lock file .terraform.lock.hcl to record the provider -selections it made above. Include this file in your version control repository -so that Terraform can guarantee to make the same selections by default when -you run "terraform init" in the future. - -Terraform has been successfully initialized! - -You may now begin working with Terraform. Try running "terraform plan" to see -any changes that are required for your infrastructure. All Terraform commands -should now work. - -If you ever set or change modules or backend configuration for Terraform, -rerun this command to reinitialize your working directory. If you forget, other -commands will detect it and remind you to do so if necessary. -Destroying resources... -module.default-unity-cs-monitoring-lambda-ZVuYp.null_resource.download_lambda_zip: Refreshing state... [id=8661383394906676551] -module.default-unity-apigateway-YsOBq.null_resource.download_lambda_zip: Refreshing state... [id=785026406896388454] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_target.invoke_lambda: Refreshing state... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-tKRjk.aws_security_group.ecs_alb_sg: Refreshing state... [id=sg-03f17b2b4f4650da4] -module.default-unity-proxy-tKRjk.aws_security_group.ecs_sg: Refreshing state... [id=sg-06d55b42c6bef38f5] -module.default-unity-ui-RbxyC.aws_lambda_invocation.proxy_lambda_invocation: Refreshing state... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration_response.api_gateway_integration_response: Refreshing state... [id=agir-gonfjtukmf-dvzgxg-GET-200] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_uri: Refreshing state... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-ui-RbxyC.aws_security_group.ecs_sg: Refreshing state... [id=sg-0b1564042554d7e0c] -module.default-unity-proxy-tKRjk.aws_iam_role.ecs_task_role: Refreshing state... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-tKRjk.aws_cloudwatch_log_group.proxyloggroup: Refreshing state... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.lambda_function_name: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250112020814485900000003] -module.default-unity-ui-RbxyC.aws_alb_listener.front_end: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/c604fe86d778a01c/c7c81ce0592fd608] -module.default-unity-apigateway-YsOBq.aws_api_gateway_method.rest_api_method_for_health_check_method: Refreshing state... [id=agm-gonfjtukmf-dvzgxg-GET] -module.default-unity-ui-RbxyC.aws_lb.main: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/c604fe86d778a01c] -module.default-unity-apigateway-YsOBq.aws_api_gateway_deployment.api-gateway-deployment: Refreshing state... [id=0f5egz] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_permission.allow_eventbridge: Refreshing state... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.mgmt_endpoint: Refreshing state... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_rule.every_five_minutes: Refreshing state... [id=unity-nightly-every_five_minutes] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.root_level_get_method_mock_integration: Refreshing state... [id=agi-gonfjtukmf-pg6a45eq3e-OPTIONS] -module.default-unity-proxy-tKRjk.aws_iam_role.lambda_iam_role: Refreshing state... [id=unity-nightly-lambda_iam_role] -module.default-unity-ui-RbxyC.aws_alb_target_group.app: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3] -module.default-unity-proxy-tKRjk.aws_lb_listener.httpd_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/c1d29eeed6277d72/230c9f06e41e25cb] -module.default-unity-apigateway-YsOBq.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Refreshing state... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-ui-RbxyC.aws_ssm_parameter.uiux_ui_proxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Refreshing state... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-apigateway-YsOBq.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-gonfjtukmf-dvzgxg-GET-200] -module.default-unity-proxy-tKRjk.aws_ecs_task_definition.httpd: Refreshing state... [id=httpd] -module.default-unity-ui-RbxyC.aws_ecs_cluster.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-apigateway-YsOBq.aws_api_gateway_authorizer.unity_cs_common_authorizer: Refreshing state... [id=xmfjrx] -module.default-unity-ui-RbxyC.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-proxy-tKRjk.aws_lb_target_group.httpd_tg: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a] -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_management_path: Refreshing state... [id=fjsrv8] -module.default-unity-apigateway-YsOBq.aws_api_gateway_rest_api.rest_api: Refreshing state... [id=gonfjtukmf] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Refreshing state... [id=unity-nightly-ecs_task_role-20250112020814514700000004] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.invoke_role_arn: Refreshing state... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Refreshing state... [id=sgr-0a7eb08db5d382c18] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Refreshing state... [id=sgr-0cce0ff8e50db4230] -module.default-unity-apigateway-YsOBq.aws_api_gateway_method.root_level_options_method: Refreshing state... [id=agm-gonfjtukmf-pg6a45eq3e-OPTIONS] -module.default-unity-proxy-tKRjk.aws_lambda_function.httpdlambda: Refreshing state... [id=unity-nightly-httpdproxymanagement] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.rest_api_integration_for_health_check: Refreshing state... [id=agi-gonfjtukmf-dvzgxg-GET] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Refreshing state... [id=sgr-0f2fe63aa4ef4a87b] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Refreshing state... [id=uqxgeo] -module.default-unity-proxy-tKRjk.aws_iam_role.ecs_execution_role: Refreshing state... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250112021555015500000001] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Refreshing state... [id=sg-0b6ff5e5d34cd5b06] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250112020814482800000002] -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_health_checks_path: Refreshing state... [id=dvzgxg] -module.default-unity-proxy-tKRjk.aws_ecs_cluster.httpd_cluster: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_policy.lambda_ssm_s3_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_ecs_stop_task_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_vpc_access_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_api_path: Refreshing state... [id=ge496o] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role.lambda_execution_role: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Refreshing state... [id=sgr-07b163e3cc3b79b25] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_execution_role_policy: Refreshing state... [id=unity-nightlyecs_execution_role-20250112020814467000000001] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_function.unity_cs_monitoring_lambda: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-ui-RbxyC.aws_ecs_task_definition.app: Refreshing state... [id=unity-nightly-ui-app] -module.default-unity-apigateway-YsOBq.aws_lambda_function.cs_common_lambda_auth: Refreshing state... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-apigateway-YsOBq.aws_iam_role.iam_for_lambda_auth: Refreshing state... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_closevirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-ui-RbxyC.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role-20250112022556208800000001] -module.default-unity-apigateway-YsOBq.aws_api_gateway_stage.api_gateway_stage: Refreshing state... [id=ags-gonfjtukmf-default] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Refreshing state... [id=sgr-05c1ce09381223a0d] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_openvirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-tKRjk.aws_lb.httpd_alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/c1d29eeed6277d72] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250112020814528100000005] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.management_console_url: Refreshing state... [id=/unity/unity/nightly/component/management-console] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_authorizer.unity_cs_common_authorizer will be destroyed - - resource "aws_api_gateway_authorizer" "unity_cs_common_authorizer" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/gonfjtukmf/authorizers/xmfjrx" -> null - - authorizer_credentials = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - authorizer_result_ttl_in_seconds = 0 -> null - - authorizer_uri = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - id = "xmfjrx" -> null - - identity_source = "method.request.header.Authorization" -> null - - name = "Unity_CS_Common_Authorizer" -> null - - provider_arns = [] -> null - - rest_api_id = "gonfjtukmf" -> null - - type = "TOKEN" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_deployment.api-gateway-deployment will be destroyed - - resource "aws_api_gateway_deployment" "api-gateway-deployment" { - - created_date = "2025-01-12T02:24:39Z" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:gonfjtukmf/dev" -> null - - id = "0f5egz" -> null - - invoke_url = "https://gonfjtukmf.execute-api.us-west-2.amazonaws.com/dev" -> null - - rest_api_id = "gonfjtukmf" -> null - - stage_name = "dev" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.rest_api_integration_for_health_check will be destroyed - - resource "aws_api_gateway_integration" "rest_api_integration_for_health_check" { - - cache_key_parameters = [] -> null - - cache_namespace = "dvzgxg" -> null - - connection_id = "uqxgeo" -> null - - connection_type = "VPC_LINK" -> null - - content_handling = "CONVERT_TO_TEXT" -> null - - http_method = "GET" -> null - - id = "agi-gonfjtukmf-dvzgxg-GET" -> null - - integration_http_method = "GET" -> null - - passthrough_behavior = "WHEN_NO_TEMPLATES" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "dvzgxg" -> null - - rest_api_id = "gonfjtukmf" -> null - - timeout_milliseconds = 29000 -> null - - type = "HTTP" -> null - - uri = "http://unity-mc-nlb-unity-nightly-daefdb070f3cca58.elb.us-west-2.amazonaws.com:8080/api/health_checks" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.root_level_get_method_mock_integration will be destroyed - - resource "aws_api_gateway_integration" "root_level_get_method_mock_integration" { - - cache_key_parameters = [] -> null - - cache_namespace = "pg6a45eq3e" -> null - - connection_type = "INTERNET" -> null - - http_method = "OPTIONS" -> null - - id = "agi-gonfjtukmf-pg6a45eq3e-OPTIONS" -> null - - passthrough_behavior = "WHEN_NO_MATCH" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "pg6a45eq3e" -> null - - rest_api_id = "gonfjtukmf" -> null - - timeout_milliseconds = 29000 -> null - - type = "MOCK" -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_integration_response.api_gateway_integration_response will be destroyed - - resource "aws_api_gateway_integration_response" "api_gateway_integration_response" { - - http_method = "GET" -> null - - id = "agir-gonfjtukmf-dvzgxg-GET-200" -> null - - resource_id = "dvzgxg" -> null - - response_parameters = {} -> null - - response_templates = {} -> null - - rest_api_id = "gonfjtukmf" -> null - - status_code = "200" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_method.rest_api_method_for_health_check_method will be destroyed - - resource "aws_api_gateway_method" "rest_api_method_for_health_check_method" { - - api_key_required = false -> null - - authorization = "CUSTOM" -> null - - authorization_scopes = [] -> null - - authorizer_id = "xmfjrx" -> null - - http_method = "GET" -> null - - id = "agm-gonfjtukmf-dvzgxg-GET" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "dvzgxg" -> null - - rest_api_id = "gonfjtukmf" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_method.root_level_options_method will be destroyed - - resource "aws_api_gateway_method" "root_level_options_method" { - - api_key_required = false -> null - - authorization = "NONE" -> null - - authorization_scopes = [] -> null - - http_method = "OPTIONS" -> null - - id = "agm-gonfjtukmf-pg6a45eq3e-OPTIONS" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "pg6a45eq3e" -> null - - rest_api_id = "gonfjtukmf" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_method_response.response_200 will be destroyed - - resource "aws_api_gateway_method_response" "response_200" { - - http_method = "GET" -> null - - id = "agmr-gonfjtukmf-dvzgxg-GET-200" -> null - - resource_id = "dvzgxg" -> null - - response_models = {} -> null - - response_parameters = {} -> null - - rest_api_id = "gonfjtukmf" -> null - - status_code = "200" -> null - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_api_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_api_path" { - - id = "ge496o" -> null - - parent_id = "fjsrv8" -> null - - path = "/management/api" -> null - - path_part = "api" -> null - - rest_api_id = "gonfjtukmf" -> null - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_health_checks_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_health_checks_path" { - - id = "dvzgxg" -> null - - parent_id = "ge496o" -> null - - path = "/management/api/health_checks" -> null - - path_part = "health_checks" -> null - - rest_api_id = "gonfjtukmf" -> null - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_management_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_management_path" { - - id = "fjsrv8" -> null - - parent_id = "pg6a45eq3e" -> null - - path = "/management" -> null - - path_part = "management" -> null - - rest_api_id = "gonfjtukmf" -> null - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_rest_api.rest_api will be destroyed - - resource "aws_api_gateway_rest_api" "rest_api" { - - api_key_source = "HEADER" -> null - - arn = "arn:aws:apigateway:us-west-2::/restapis/gonfjtukmf" -> null - - binary_media_types = [] -> null - - created_date = "2025-01-12T02:17:27Z" -> null - - description = "Unity unity-nightly Project REST API Gateway" -> null - - disable_execute_api_endpoint = false -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:gonfjtukmf" -> null - - id = "gonfjtukmf" -> null - - name = "unity-unity-nightly-rest-api-gateway" -> null - - root_resource_id = "pg6a45eq3e" -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - - - endpoint_configuration { - - types = [ - - "REGIONAL", - ] -> null - - vpc_endpoint_ids = [] -> null - } - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_stage.api_gateway_stage will be destroyed - - resource "aws_api_gateway_stage" "api_gateway_stage" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/gonfjtukmf/stages/default" -> null - - cache_cluster_enabled = false -> null - - deployment_id = "0f5egz" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:gonfjtukmf/default" -> null - - id = "ags-gonfjtukmf-default" -> null - - invoke_url = "https://gonfjtukmf.execute-api.us-west-2.amazonaws.com/default" -> null - - rest_api_id = "gonfjtukmf" -> null - - stage_name = "default" -> null - - tags = {} -> null - - tags_all = {} -> null - - variables = {} -> null - - xray_tracing_enabled = false -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link will be destroyed - - resource "aws_api_gateway_vpc_link" "rest_api_health_check_vpc_link" { - - arn = "arn:aws:apigateway:us-west-2::/vpclinks/uqxgeo" -> null - - description = "mc-nlb-vpc-link-unity-nightly" -> null - - id = "uqxgeo" -> null - - name = "mc-nlb-vpc-link-unity-nightly" -> null - - tags = {} -> null - - tags_all = {} -> null - - target_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/net/unity-mc-nlb-unity-nightly/daefdb070f3cca58", - ] -> null - } - - # module.default-unity-apigateway-YsOBq.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group will be destroyed - - resource "aws_cloudwatch_log_group" "cs_common_lambda_auth_log_group" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - id = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - log_group_class = "STANDARD" -> null - - name = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - retention_in_days = 14 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_iam_role.iam_for_lambda_auth will be destroyed - - resource "aws_iam_role" "iam_for_lambda_auth" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = [ - - "lambda.amazonaws.com", - - "apigateway.amazonaws.com", - ] - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-12T02:17:27Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-iam_for_lambda_auth" -> null - - managed_policy_arns = [] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-iam_for_lambda_auth" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFJ3UQDGNOW" -> null - # (2 unchanged attributes hidden) - - - inline_policy { - - name = "unity-cs-lambda-auth-inline-policy" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "logs:PutLogEvents", - - "logs:CreateLogStream", - - "logs:CreateLogGroup", - - "lambda:InvokeFunction", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - } - } - - # module.default-unity-apigateway-YsOBq.aws_lambda_function.cs_common_lambda_auth will be destroyed - - resource "aws_lambda_function" "cs_common_lambda_auth" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer" -> null - - code_sha256 = "Bumcg++RUB+axI/ppSM5bFNknf8Jlc+l4e1pAQrYm98=" -> null - - filename = "ucs-common-lambda-auth.zip" -> null - - function_name = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - handler = "index.handler" -> null - - id = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - last_modified = "2025-01-12T02:17:36.925+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - runtime = "nodejs20.x" -> null - - skip_destroy = false -> null - - source_code_size = 212744 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "COGNITO_CLIENT_ID_LIST" = "deprecated" - - "COGNITO_GROUPS_ALLOWED" = (sensitive value) - - "COGNITO_USER_POOL_ID" = (sensitive value) - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_rest_api_id_parameter will be destroyed - - resource "aws_ssm_parameter" "api_gateway_rest_api_id_parameter" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - name = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_uri will be destroyed - - resource "aws_ssm_parameter" "api_gateway_uri" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/management/api-gateway/gateway-uri" -> null - - data_type = "text" -> null - - id = "/unity/cs/management/api-gateway/gateway-uri" -> null - - name = "/unity/cs/management/api-gateway/gateway-uri" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.aws_ssm_parameter.invoke_role_arn will be destroyed - - resource "aws_ssm_parameter" "invoke_role_arn" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - name = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-YsOBq.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "785026406896388454" -> null - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_rule.every_five_minutes will be destroyed - - resource "aws_cloudwatch_event_rule" "every_five_minutes" { - - arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes" -> null - - is_enabled = true -> null - - name = "unity-nightly-every_five_minutes" -> null - - schedule_expression = "rate(5 minutes)" -> null - - state = "ENABLED" -> null - - tags = {} -> null - - tags_all = {} -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_target.invoke_lambda will be destroyed - - resource "aws_cloudwatch_event_target" "invoke_lambda" { - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes-invoke_lambda_function" -> null - - rule = "unity-nightly-every_five_minutes" -> null - - target_id = "invoke_lambda_function" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_policy.lambda_ssm_s3_policy will be destroyed - - resource "aws_iam_policy" "lambda_ssm_s3_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - attachment_count = 1 -> null - - description = "Policy to allow Lambda to read/write SSM and send objects to S3" -> null - - id = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ssm:GetParameter", - - "ssm:GetParameters", - - "ssm:PutParameter", - - "ssm:DescribeParameters", - ] - - Effect = "Allow" - - Resource = "*" - }, - - { - - Action = [ - - "s3:PutObject", - - "s3:GetObject", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFKGNW3PPNQ" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role.lambda_execution_role will be destroyed - - resource "aws_iam_role" "lambda_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-12T02:15:54Z" -> null - - force_detach_policies = false -> null - - id = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFPA5XAZWT3" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role_policy_attachment.attach_ssm_s3_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "attach_ssm_s3_policy" { - - id = "unity-unity-nightly-cs-monitoring-lambda-role-20250112021555015500000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - role = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_function.unity_cs_monitoring_lambda will be destroyed - - resource "aws_lambda_function" "unity_cs_monitoring_lambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - code_sha256 = "o4yFvQ976RHf3G1ExiEJg2pTNaiWfKNl9n5QvhIBvxc=" -> null - - filename = ".terraform/modules/default-unity-cs-monitoring-lambda-ZVuYp/unity-cs-monitoring-lambda.zip" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - handler = "lambda_function.lambda_handler" -> null - - id = "unity-unity-nightly-cs-monitoring-lambda" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda/invocations" -> null - - last_modified = "2025-01-12T02:16:03.253+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - runtime = "python3.12" -> null - - skip_destroy = false -> null - - source_code_size = 15016734 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 300 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "PROJECT" = "unity" - - "VENUE" = "nightly" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-unity-nightly-cs-monitoring-lambda" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_permission.allow_eventbridge will be destroyed - - resource "aws_lambda_permission" "allow_eventbridge" { - - action = "lambda:InvokeFunction" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - id = "AllowExecutionFromEventBridge" -> null - - principal = "events.amazonaws.com" -> null - - source_arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - statement_id = "AllowExecutionFromEventBridge" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-ZVuYp.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "8661383394906676551" -> null - } - - # module.default-unity-proxy-tKRjk.aws_cloudwatch_log_group.proxyloggroup will be destroyed - - resource "aws_cloudwatch_log_group" "proxyloggroup" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/ecs/unity-nightly-managementproxy" -> null - - id = "/ecs/unity-nightly-managementproxy" -> null - - log_group_class = "STANDARD" -> null - - name = "/ecs/unity-nightly-managementproxy" -> null - - retention_in_days = 0 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ecs_cluster.httpd_cluster will be destroyed - - resource "aws_ecs_cluster" "httpd_cluster" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - name = "unity-nightly-httpd-cluster" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service will be destroyed - - resource "aws_ecs_service" "httpd_service" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 1 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service" -> null - - launch_type = "FARGATE" -> null - - name = "httpd-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:343" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "unity-nightly-httpd-task" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-06d55b42c6bef38f5", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-proxy-tKRjk.aws_ecs_task_definition.httpd will be destroyed - - resource "aws_ecs_task_definition" "httpd" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:343" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd" -> null - - container_definitions = jsonencode( - [ - - { - - environment = [ - - { - - name = "UNITY_PROJECT" - - value = "unity" - }, - - { - - name = "UNITY_VENUE" - - value = "nightly" - }, - ] - - essential = true - - image = "ghcr.io/unity-sds/unity-proxy/httpd-proxy:0.16.0" - - logConfiguration = { - - logDriver = "awslogs" - - options = { - - awslogs-group = "/ecs/unity-nightly-managementproxy" - - awslogs-region = "us-west-2" - - awslogs-stream-prefix = "ecs" - } - } - - mountPoints = [] - - name = "unity-nightly-httpd-task" - - portMappings = [ - - { - - containerPort = 8080 - - hostPort = 8080 - - protocol = "tcp" - }, - ] - - systemControls = [] - - volumesFrom = [] - }, - ] - ) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - family = "httpd" -> null - - id = "httpd" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 343 -> null - - skip_destroy = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - track_latest = false -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_ecs_stop_task_policy will be destroyed - - resource "aws_iam_policy" "lambda_ecs_stop_task_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to stop ECS tasks" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - name = "unity-nightly-lambda_ecs_stop_task_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ecs:ListTasks", - - "ecs:StopTask", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFGLAVDJTRW" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_vpc_access_policy will be destroyed - - resource "aws_iam_policy" "lambda_vpc_access_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to manage ENIs for VPC access" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - name = "unity-nightly-lambda_vpc_access_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ec2:CreateNetworkInterface", - - "ec2:DescribeNetworkInterfaces", - - "ec2:DeleteNetworkInterface", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFMFXJY4ETQ" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tKRjk.aws_iam_role.ecs_execution_role will be destroyed - - resource "aws_iam_role" "ecs_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-12T02:08:13Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightlyecs_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightlyecs_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFG6OPDW2IT" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_iam_role.ecs_task_role will be destroyed - - resource "aws_iam_role" "ecs_task_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-12T02:08:13Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ecs_task_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ecs_task_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFCOLO2CMXL" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_iam_role.lambda_iam_role will be destroyed - - resource "aws_iam_role" "lambda_iam_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-12T02:08:13Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-lambda_iam_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy", - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy", - - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-lambda_iam_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFHQUETMSG3" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_execution_role_policy" { - - id = "unity-nightlyecs_execution_role-20250112020814467000000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightlyecs_execution_role" -> null - } - - # module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_ssm_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_ssm_role_policy" { - - id = "unity-nightly-ecs_task_role-20250112020814514700000004" -> null - - policy_arn = "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess" -> null - - role = "unity-nightly-ecs_task_role" -> null - } - - # module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_base_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_base_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250112020814528100000005" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250112020814485900000003" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_vpc_access_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250112020814482800000002" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-tKRjk.aws_lambda_function.httpdlambda will be destroyed - - resource "aws_lambda_function" "httpdlambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement" -> null - - code_sha256 = "eFUx8dhh2JtcorJ/1+vHlS/cAehBGd6o5Kvf6EpZha4=" -> null - - filename = ".terraform/modules/default-unity-proxy-tKRjk/lambda.zip" -> null - - function_name = "unity-nightly-httpdproxymanagement" -> null - - handler = "lambda.lambda_handler" -> null - - id = "unity-nightly-httpdproxymanagement" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement/invocations" -> null - - last_modified = "2025-01-12T02:11:28.299+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - runtime = "python3.8" -> null - - skip_destroy = false -> null - - source_code_size = 687 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "CLUSTER_NAME" = "unity-nightly-httpd-cluster" - - "SERVICE_NAME" = "httpd-service" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-httpdproxymanagement" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - - - vpc_config { - - ipv6_allowed_for_dual_stack = false -> null - - security_group_ids = [ - - "sg-0b6ff5e5d34cd5b06", - ] -> null - - subnet_ids = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - } - } - - # module.default-unity-proxy-tKRjk.aws_lb.httpd_alb will be destroyed - - resource "aws_lb" "httpd_alb" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/c1d29eeed6277d72" -> null - - arn_suffix = "app/unity-nightly-httpd-alb/c1d29eeed6277d72" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-httpd-alb-755088592.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/c1d29eeed6277d72" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-httpd-alb" -> null - - preserve_host_header = true -> null - - security_groups = [ - - "sg-03f17b2b4f4650da4", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-proxy-tKRjk.aws_lb_listener.httpd_listener will be destroyed - - resource "aws_lb_listener" "httpd_listener" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/c1d29eeed6277d72/230c9f06e41e25cb" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/c1d29eeed6277d72/230c9f06e41e25cb" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/c1d29eeed6277d72" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a" -> null - - type = "forward" -> null - } - } - - # module.default-unity-proxy-tKRjk.aws_lb_target_group.httpd_tg will be destroyed - - resource "aws_lb_target_group" "httpd_tg" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a" -> null - - arn_suffix = "targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/c1d29eeed6277d72", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-httpd-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 2 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-proxy-tKRjk.aws_security_group.ecs_alb_sg will be destroyed - - resource "aws_security_group" "ecs_alb_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-03f17b2b4f4650da4" -> null - - description = "Security group for ECS service ALB" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-03f17b2b4f4650da4" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_alb_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tKRjk.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-06d55b42c6bef38f5" -> null - - description = "Security group for ECS service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-06d55b42c6bef38f5" -> null - - ingress = [ - - { - - cidr_blocks = [] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [ - - "sg-03f17b2b4f4650da4", - ] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_service_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg will be destroyed - - resource "aws_security_group" "lambda_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0b6ff5e5d34cd5b06" -> null - - description = "Security group for httpd lambda service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0b6ff5e5d34cd5b06" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 2049 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 2049 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-httpd_lambda_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ssm_parameter.lambda_function_name will be destroyed - - resource "aws_ssm_parameter" "lambda_function_name" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - name = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ssm_parameter.management_console_url will be destroyed - - resource "aws_ssm_parameter" "management_console_url" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/component/management-console" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/component/management-console" -> null - - name = "/unity/unity/nightly/component/management-console" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_closevirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_closevirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_config will be destroyed - - resource "aws_ssm_parameter" "managementproxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_openvirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_openvirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_ssm_parameter.mgmt_endpoint will be destroyed - - resource "aws_ssm_parameter" "mgmt_endpoint" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - name = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0a7eb08db5d382c18" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-0a7eb08db5d382c18" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-03f17b2b4f4650da4" -> null - - security_group_rule_id = "sgr-0a7eb08db5d382c18" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-05c1ce09381223a0d" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-05c1ce09381223a0d" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-06d55b42c6bef38f5" -> null - - security_group_rule_id = "sgr-05c1ce09381223a0d" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "alb_all_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-07b163e3cc3b79b25" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 8080 -> null - - id = "sgr-07b163e3cc3b79b25" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-03f17b2b4f4650da4" -> null - - security_group_rule_id = "sgr-07b163e3cc3b79b25" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0f2fe63aa4ef4a87b" -> null - - from_port = 8080 -> null - - id = "sgr-0f2fe63aa4ef4a87b" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-03f17b2b4f4650da4" -> null - - security_group_id = "sg-06d55b42c6bef38f5" -> null - - security_group_rule_id = "sgr-0f2fe63aa4ef4a87b" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_mc_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0cce0ff8e50db4230" -> null - - from_port = 8080 -> null - - id = "sgr-0cce0ff8e50db4230" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-06d55b42c6bef38f5" -> null - - security_group_id = "sg-0494354bd91eb0923" -> null - - security_group_rule_id = "sgr-0cce0ff8e50db4230" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-ui-RbxyC.aws_alb_listener.front_end will be destroyed - - resource "aws_alb_listener" "front_end" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/c604fe86d778a01c/c7c81ce0592fd608" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/c604fe86d778a01c/c7c81ce0592fd608" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/c604fe86d778a01c" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3" -> null - - type = "forward" -> null - } - } - - # module.default-unity-ui-RbxyC.aws_alb_target_group.app will be destroyed - - resource "aws_alb_target_group" "app" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3" -> null - - arn_suffix = "targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/c604fe86d778a01c", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-ui-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 3 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-ui-RbxyC.aws_ecs_cluster.main will be destroyed - - resource "aws_ecs_cluster" "main" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - name = "unity-nightly-ui-cluster" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-ui-RbxyC.aws_ecs_service.main will be destroyed - - resource "aws_ecs_service" "main" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 2 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service" -> null - - launch_type = "FARGATE" -> null - - name = "unity-nightly-ui-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:21" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "ui" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-0b1564042554d7e0c", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-ui-RbxyC.aws_ecs_task_definition.app will be destroyed - - resource "aws_ecs_task_definition" "app" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:21" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app" -> null - - container_definitions = (sensitive value) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - family = "unity-nightly-ui-app" -> null - - id = "unity-nightly-ui-app" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 21 -> null - - skip_destroy = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - track_latest = false -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-ui-RbxyC.aws_iam_role.ecs_task_execution_role will be destroyed - - resource "aws_iam_role" "ecs_task_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-12T02:25:55Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ui-ecs_task_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ui-ecs_task_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - unique_id = "AROA4S74LNWFD2VWR6GJD" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-ui-RbxyC.aws_iam_role_policy_attachment.ecs_task_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_task_execution_role_policy" { - - id = "unity-nightly-ui-ecs_task_execution_role-20250112022556208800000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightly-ui-ecs_task_execution_role" -> null - } - - # module.default-unity-ui-RbxyC.aws_lambda_invocation.proxy_lambda_invocation will be destroyed - - resource "aws_lambda_invocation" "proxy_lambda_invocation" { - - function_name = "unity-nightly-httpdproxymanagement" -> null - - id = "unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e" -> null - - lifecycle_scope = "CREATE_ONLY" -> null - - qualifier = "$LATEST" -> null - - result = jsonencode( - { - - body = "ECS task restarted" - - statusCode = 200 - } - ) -> null - - terraform_key = "tf" -> null - - triggers = { - - "redeployment" = (sensitive value) - } -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-RbxyC.aws_lb.main will be destroyed - - resource "aws_lb" "main" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/c604fe86d778a01c" -> null - - arn_suffix = "app/unity-nightly-ui-lb/c604fe86d778a01c" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-ui-lb-1631913605.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/c604fe86d778a01c" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-ui-lb" -> null - - preserve_host_header = false -> null - - security_groups = [ - - "sg-0b1564042554d7e0c", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-ui-RbxyC.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0b1564042554d7e0c" -> null - - description = "Security group for the UI ECS Service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0b1564042554d7e0c" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ui-ecs-sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-RbxyC.aws_ssm_parameter.uiux_ui_proxy_config will be destroyed - - resource "aws_ssm_parameter" "uiux_ui_proxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 72 to destroy. -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destroying... [id=unity-nightlyecs_execution_role-20250112020814467000000001] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_uri: Destroying... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destroying... [id=sgr-07b163e3cc3b79b25] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250112020814485900000003] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.root_level_get_method_mock_integration: Destroying... [id=agi-gonfjtukmf-pg6a45eq3e-OPTIONS] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.mgmt_endpoint: Destroying... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destroying... [id=sgr-0a7eb08db5d382c18] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destroying... [id=sgr-0cce0ff8e50db4230] -module.default-unity-ui-RbxyC.aws_lambda_invocation.proxy_lambda_invocation: Destroying... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-ui-RbxyC.aws_lambda_invocation.proxy_lambda_invocation: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destroying... [id=unity-nightly-ecs_task_role-20250112020814514700000004] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.root_level_get_method_mock_integration: Destruction complete after 1s -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_permission.allow_eventbridge: Destroying... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.mgmt_endpoint: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration_response.api_gateway_integration_response: Destroying... [id=agir-gonfjtukmf-dvzgxg-GET-200] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_uri: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destroying... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_permission.allow_eventbridge: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_target.invoke_lambda: Destroying... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration_response.api_gateway_integration_response: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250112020814528100000005] -module.default-unity-apigateway-YsOBq.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destroying... [id=sgr-0f2fe63aa4ef4a87b] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_target.invoke_lambda: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_ssm_parameter.management_console_url: Destroying... [id=/unity/unity/nightly/component/management-console] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destruction complete after 1s -module.default-unity-proxy-tKRjk.aws_ssm_parameter.lambda_function_name: Destroying... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.management_console_url: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destroying... [id=sgr-05c1ce09381223a0d] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.invoke_role_arn: Destroying... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destruction complete after 1s -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250112020814482800000002] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.lambda_function_name: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destroying... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.invoke_role_arn: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_ssm_parameter.uiux_ui_proxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_api_gateway_method.root_level_options_method: Destroying... [id=agm-gonfjtukmf-pg6a45eq3e-OPTIONS] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_api_gateway_stage.api_gateway_stage: Destroying... [id=ags-gonfjtukmf-default] -module.default-unity-apigateway-YsOBq.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_api_gateway_method_response.response_200: Destroying... [id=agmr-gonfjtukmf-dvzgxg-GET-200] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_rule.every_five_minutes: Destroying... [id=unity-nightly-every_five_minutes] -module.default-unity-proxy-tKRjk.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_function.unity_cs_monitoring_lambda: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-ui-RbxyC.aws_ssm_parameter.uiux_ui_proxy_config: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_lambda_function.httpdlambda: Destroying... [id=unity-nightly-httpdproxymanagement] -module.default-unity-apigateway-YsOBq.aws_api_gateway_method.root_level_options_method: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_ecs_stop_task_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_cloudwatch_event_rule.every_five_minutes: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_method_response.response_200: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_vpc_access_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-tKRjk.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_stage.api_gateway_stage: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_deployment.api-gateway-deployment: Destroying... [id=0f5egz] -module.default-unity-proxy-tKRjk.aws_lambda_function.httpdlambda: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role.lambda_iam_role: Destroying... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Destroying... [id=sg-0b6ff5e5d34cd5b06] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_lambda_function.unity_cs_monitoring_lambda: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-ZVuYp.null_resource.download_lambda_zip: Destroying... [id=8661383394906676551] -module.default-unity-cs-monitoring-lambda-ZVuYp.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250112021555015500000001] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role.lambda_execution_role: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_policy.lambda_ssm_s3_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_vpc_access_policy: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_policy.lambda_ecs_stop_task_policy: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_deployment.api-gateway-deployment: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.rest_api_integration_for_health_check: Destroying... [id=agi-gonfjtukmf-dvzgxg-GET] -module.default-unity-apigateway-YsOBq.aws_api_gateway_integration.rest_api_integration_for_health_check: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_method.rest_api_method_for_health_check_method: Destroying... [id=agm-gonfjtukmf-dvzgxg-GET] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destroying... [id=uqxgeo] -module.default-unity-proxy-tKRjk.aws_iam_role.lambda_iam_role: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_method.rest_api_method_for_health_check_method: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destroying... [id=xmfjrx] -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destroying... [id=dvzgxg] -module.default-unity-apigateway-YsOBq.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_lambda_function.cs_common_lambda_auth: Destroying... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_api_path: Destroying... [id=ge496o] -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_api_path: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_management_path: Destroying... [id=fjsrv8] -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_role.lambda_execution_role: Destruction complete after 1s -module.default-unity-cs-monitoring-lambda-ZVuYp.aws_iam_policy.lambda_ssm_s3_policy: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.aws_api_gateway_resource.rest_api_resource_management_path: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_api_gateway_rest_api.rest_api: Destroying... [id=gonfjtukmf] -module.default-unity-apigateway-YsOBq.aws_lambda_function.cs_common_lambda_auth: Destruction complete after 1s -module.default-unity-apigateway-YsOBq.null_resource.download_lambda_zip: Destroying... [id=785026406896388454] -module.default-unity-apigateway-YsOBq.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_iam_role.iam_for_lambda_auth: Destroying... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-YsOBq.aws_api_gateway_rest_api.rest_api: Destruction complete after 0s -module.default-unity-apigateway-YsOBq.aws_iam_role.iam_for_lambda_auth: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 10s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 10s elapsed] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=uqxgeo, 10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 20s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 20s elapsed] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=uqxgeo, 20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 30s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 30s elapsed] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=uqxgeo, 30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 40s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 40s elapsed] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=uqxgeo, 40s elapsed] -module.default-unity-apigateway-YsOBq.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destruction complete after 46s -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 50s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 50s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m0s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 1m0s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m10s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 1m10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m20s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 1m20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m30s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 1m30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m40s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 1m40s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m50s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 1m50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m50s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m0s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 2m0s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m10s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 2m10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m20s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 2m20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m30s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 2m30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m40s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 2m40s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m50s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 2m50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m50s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m0s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 3m0s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m10s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 3m10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m20s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 3m20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m30s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 3m30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m40s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 3m40s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m50s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 3m50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m50s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m0s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 4m0s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m10s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 4m10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m20s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 4m20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m30s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 4m30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m40s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 4m40s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m50s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Still destroying... [id=sg-0b6ff5e5d34cd5b06, 4m50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m50s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.lambda_sg: Destruction complete after 4m53s -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m0s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m40s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m50s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m0s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m10s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m10s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m20s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m20s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m30s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m30s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m40s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m40s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m50s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m50s elapsed] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m0s elapsed] -module.default-unity-proxy-tKRjk.aws_ecs_service.httpd_service: Destruction complete after 7m8s -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-tKRjk.aws_ecs_task_definition.httpd: Destroying... [id=httpd] -module.default-unity-proxy-tKRjk.aws_lb_listener.httpd_listener: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/c1d29eeed6277d72/230c9f06e41e25cb] -module.default-unity-proxy-tKRjk.aws_security_group.ecs_sg: Destroying... [id=sg-06d55b42c6bef38f5] -module.default-unity-proxy-tKRjk.aws_ecs_cluster.httpd_cluster: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-tKRjk.aws_ecs_task_definition.httpd: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_cloudwatch_log_group.proxyloggroup: Destroying... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-tKRjk.aws_iam_role.ecs_execution_role: Destroying... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-tKRjk.aws_iam_role.ecs_task_role: Destroying... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_config: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_closevirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-tKRjk.aws_cloudwatch_log_group.proxyloggroup: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_ecs_cluster.httpd_cluster: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_lb_listener.httpd_listener: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_lb_target_group.httpd_tg: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/3c6b109cfdc9e54a] -module.default-unity-proxy-tKRjk.aws_lb.httpd_alb: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/c1d29eeed6277d72] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_closevirtualhost: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_openvirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-tKRjk.aws_ssm_parameter.managementproxy_openvirtualhost: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_lb_target_group.httpd_tg: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_security_group.ecs_sg: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role.ecs_execution_role: Destruction complete after 0s -module.default-unity-proxy-tKRjk.aws_iam_role.ecs_task_role: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m10s elapsed] -module.default-unity-proxy-tKRjk.aws_lb.httpd_alb: Destruction complete after 1s -module.default-unity-proxy-tKRjk.aws_security_group.ecs_alb_sg: Destroying... [id=sg-03f17b2b4f4650da4] -module.default-unity-ui-RbxyC.aws_ecs_service.main: Destruction complete after 7m20s -module.default-unity-ui-RbxyC.aws_ecs_task_definition.app: Destroying... [id=unity-nightly-ui-app] -module.default-unity-ui-RbxyC.aws_ecs_cluster.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-ui-RbxyC.aws_alb_listener.front_end: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/c604fe86d778a01c/c7c81ce0592fd608] -module.default-unity-ui-RbxyC.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destroying... [id=unity-nightly-ui-ecs_task_execution_role-20250112022556208800000001] -module.default-unity-ui-RbxyC.aws_ecs_task_definition.app: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_iam_role.ecs_task_execution_role: Destroying... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-ui-RbxyC.aws_alb_listener.front_end: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_lb.main: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/c604fe86d778a01c] -module.default-unity-ui-RbxyC.aws_alb_target_group.app: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/72e210a5fcf67cd3] -module.default-unity-ui-RbxyC.aws_ecs_cluster.main: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_alb_target_group.app: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_iam_role.ecs_task_execution_role: Destruction complete after 0s -module.default-unity-ui-RbxyC.aws_lb.main: Destruction complete after 1s -module.default-unity-ui-RbxyC.aws_security_group.ecs_sg: Destroying... [id=sg-0b1564042554d7e0c] -module.default-unity-proxy-tKRjk.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-03f17b2b4f4650da4, 10s elapsed] -module.default-unity-proxy-tKRjk.aws_security_group.ecs_alb_sg: Destruction complete after 16s -module.default-unity-ui-RbxyC.aws_security_group.ecs_sg: Still destroying... [id=sg-0b1564042554d7e0c, 10s elapsed] -module.default-unity-ui-RbxyC.aws_security_group.ecs_sg: Destruction complete after 16s - -Destroy complete! Resources: 72 destroyed. -Deleting DynamoDB table unity-nightly-terraform-state... -{ - "TableDescription": { - "TableName": "unity-nightly-terraform-state", - "TableStatus": "DELETING", - "ProvisionedThroughput": { - "NumberOfDecreasesToday": 0, - "ReadCapacityUnits": 5, - "WriteCapacityUnits": 5 - }, - "TableSizeBytes": 0, - "ItemCount": 0, - "TableArn": "arn:aws:dynamodb:us-west-2:865428270474:table/unity-nightly-terraform-state", - "TableId": "6961a389-aba5-4644-95b9-41008052f056", - "DeletionProtectionEnabled": false - } -} -DynamoDB table unity-nightly-terraform-state was deleted successfully -/home/ubuntu/unity-cs-infra/nightly_tests -Terraform operations completed. Namespace directory and all Terraform files have been deleted. -MC Teardown: Completed in 484 seconds -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] -Waiting for Cloudformation Stack Termination..............................[40] -Waiting for Cloudformation Stack Termination..............................[60] -Waiting for Cloudformation Stack Termination..............................[80] -Waiting for Cloudformation Stack Termination..............................[100] -Waiting for Cloudformation Stack Termination..............................[120] -Waiting for Cloudformation Stack Termination..............................[140] -Waiting for Cloudformation Stack Termination..............................[160] -Waiting for Cloudformation Stack Termination..............................[180] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 200s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 19.2 KiB/19.2 KiB (338.9 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 18.1 KiB/18.1 KiB (205.7 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: f03d7070-d089-11ef-b417-06555817aa1b, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-12T02:07:13.130000+00:00, - ResourceStatus: CREATE_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_COMPLETE-2025-01-12T02:07:11.663Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-12T02:07:11.663000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: DeployerAutoScalingGroup-c959149f-e09b-4314-ab1d-774f3d2dbe1b, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-12T02:07:11.295000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received SUCCESS signal with UniqueId i-064f10e60f0c48cf5 - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-12T02:03:47.472Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-12T02:03:47.472000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: 73da2d70-d089-11ef-bc98-0a5c32908d29, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-12T02:03:44.455000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-4408e74b-b61e-4ce0-abc2-f05f1a15ec3c, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-12T02:03:44.424000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-12T02:03:35.148Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-12T02:03:35.148000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-12T02:03:34.009Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-12T02:03:34.009000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-12T02:03:33.234Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-12T02:03:33.234000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-12T02:03:32.981Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-12T02:03:32.981000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-12T02:03:32.357Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-12T02:03:32.357000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-12T02:03:32.093Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-12T02:03:32.093000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-12T02:03:31.869Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-12T02:03:31.869000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-12T02:03:31.236Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-12T02:03:31.236000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-12T02:03:30.757Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-12T02:03:30.757000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-12T02:01:45.816Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-12T02:01:45.816000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-12T02:01:45.628Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-12T02:01:45.628000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-12T02:01:43.804Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-12T02:01:43.804000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-12T02:01:43.270Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-12T02:01:43.270000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-da8e3248-aa2a-47c7-aa6b-0b83e9727faf, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-12T02:01:38.229000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-94cd74f9-a1c0-492a-af15-eac001e5f6d2, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-12T02:01:37.459000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-12T02:01:37.322Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-12T02:01:37.322000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-12T02:01:36.883Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-12T02:01:36.883000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-12T02:01:36.000Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-12T02:01:36+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-12T02:01:35.909Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-12T02:01:35.909000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-12T02:01:35.549Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-12T02:01:35.549000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-12T02:01:34.782Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-12T02:01:34.782000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-12T02:01:34.026Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-12T02:01:34.026000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-12T02:01:28.952Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:28.952000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-12T02:01:28.169Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-12T02:01:28.169000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-12T02:01:25.748Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-12T02:01:25.748000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-12T02:01:25.171Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:25.171000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-12T02:01:23.053Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:23.053000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-12T02:01:20.750Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:20.750000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-375708c8-b840-4029-85b0-42096fdfd9c5, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:20.259000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-12T02:01:19.634Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:19.634000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-12T02:01:19.551Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-12T02:01:19.551000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-12T02:01:18.626Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-12T02:01:18.626000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-12T02:01:18.574Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-12T02:01:18.574000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-12T02:01:17.465Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-12T02:01:17.465000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-12T02:01:17.458Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-12T02:01:17.458000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-12T02:01:17.448Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-12T02:01:17.448000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-12T02:01:17.415Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-12T02:01:17.415000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: 1a97aee0-d089-11ef-a63f-06a5c178ad1f, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-12T02:01:14.803000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14582 100 11 100 14571 59 78338 --:--:-- --:--:-- --:--:-- 78397 -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-12_18-00/nightly_output_2025-01-12_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-12_18-00/nightly_output_2025-01-12_18-00.txt deleted file mode 100644 index 389540d7..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-12_18-00/nightly_output_2025-01-12_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [5621426] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [340 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-229021975.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-229021975.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-229021975.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-229021975.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55c5b6aeb34a -E #1 0x55c5b66016e0 -E #2 0x55c5b66503e6 -E #3 0x55c5b6650681 -E #4 0x55c5b6695b04 -E #5 0x55c5b667448d -E #6 0x55c5b6692ed7 -E #7 0x55c5b6674203 -E #8 0x55c5b6642cc0 -E #9 0x55c5b6643c9e -E #10 0x55c5b6ab8d3b -E #11 0x55c5b6abccc2 -E #12 0x55c5b6aa5b6c -E #13 0x55c5b6abd837 -E #14 0x55c5b6a8b10f -E #15 0x55c5b6ada5a8 -E #16 0x55c5b6ada770 -E #17 0x55c5b6aea1c6 -E #18 0x7f3749116a94 -E #19 0x7f37491a3a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55c5b6aeb34a -E #1 0x55c5b66016e0 -E #2 0x55c5b66503e6 -E #3 0x55c5b6650681 -E #4 0x55c5b6695b04 -E #5 0x55c5b667448d -E #6 0x55c5b6692ed7 -E #7 0x55c5b6674203 -E #8 0x55c5b6642cc0 -E #9 0x55c5b6643c9e -E #10 0x55c5b6ab8d3b -E #11 0x55c5b6abccc2 -E #12 0x55c5b6aa5b6c -E #13 0x55c5b6abd837 -E #14 0x55c5b6a8b10f -E #15 0x55c5b6ada5a8 -E #16 0x55c5b6ada770 -E #17 0x55c5b6aea1c6 -E #18 0x7f3749116a94 -E #19 0x7f37491a3a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55c5b6aeb34a -E #1 0x55c5b66016e0 -E #2 0x55c5b66503e6 -E #3 0x55c5b6650681 -E #4 0x55c5b6695b04 -E #5 0x55c5b667448d -E #6 0x55c5b6692ed7 -E #7 0x55c5b6674203 -E #8 0x55c5b6642cc0 -E #9 0x55c5b6643c9e -E #10 0x55c5b6ab8d3b -E #11 0x55c5b6abccc2 -E #12 0x55c5b6aa5b6c -E #13 0x55c5b6abd837 -E #14 0x55c5b6a8b10f -E #15 0x55c5b6ada5a8 -E #16 0x55c5b6ada770 -E #17 0x55c5b6aea1c6 -E #18 0x7f3749116a94 -E #19 0x7f37491a3a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 119.77s (0:01:59) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-12_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-12_18-00/output.log deleted file mode 100644 index be4730ac..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-12_18-00/output.log +++ /dev/null @@ -1,3116 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 https://apt.releases.hashicorp.com focal InRelease -Hit:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Hit:4 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease -Hit:5 https://download.docker.com/linux/ubuntu focal InRelease -Ign:6 https://apt.vector.dev stable InRelease -Hit:7 https://apt.vector.dev stable Release -Get:8 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Hit:13 http://security.ubuntu.com/ubuntu focal-security InRelease -Get:15 https://esm.ubuntu.com/apps/ubuntu focal-apps-security/main amd64 Packages [160 kB] -Fetched 321 kB in 7s (48.8 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [5621426] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-11_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/47565b60-d152-11ef-b487-0a5b64e9ac45" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [340 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-229021975.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 18.1 KiB/18.1 KiB (323.1 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 19.2 KiB/19.2 KiB (181.8 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -2bd15bbb2a60: Pull complete -9a128b13f9b1: Pull complete -181410dbbb3c: Pull complete -aee6dd6c6c6c: Pull complete -da6d2e56f44d: Pull complete -a21cc67e5ca6: Pull complete -51609b3a85b2: Pull complete -e57bde81af92: Pull complete -062afa674fc9: Pull complete -399fe729a9db: Pull complete -d8733e6f38f7: Pull complete -failed to register layer: write /usr/lib/x86_64-linux-gnu/libLLVM-17.so.1: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1301 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1732 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -e18593c6d1ffc3732c68cdeed68939fcdb36750fb32347ec4ddfdc773f188e48 -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Sun Jan 12 18:30:58 PST 2025 -Pushing test results to nightly_logs/log_2025-01-12_18-00... -[main 89d1e2d] Add nightly output for 2025-01-12_18-00 - 3 files changed, 3250 insertions(+) - create mode 100644 nightly_tests/nightly_logs/log_2025-01-12_18-00/nightly_output_2025-01-12_18-00.txt - create mode 100644 nightly_tests/nightly_logs/log_2025-01-12_18-00/output.log -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-12_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - 5621426..89d1e2d main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: CREATE_COMPLETE -Destroying unity-nightly Management Console and AWS resources... -Initializing Terraform... -Initializing the backend... - -Successfully configured the backend "s3"! Terraform will automatically -use this backend unless the backend configuration changes. -Initializing provider plugins... -- Finding latest version of hashicorp/null... -- Finding latest version of hashicorp/aws... -- Installing hashicorp/null v3.2.3... -- Installed hashicorp/null v3.2.3 (signed by HashiCorp) -- Installing hashicorp/aws v5.83.1... -- Installed hashicorp/aws v5.83.1 (signed by HashiCorp) -Terraform has created a lock file .terraform.lock.hcl to record the provider -selections it made above. Include this file in your version control repository -so that Terraform can guarantee to make the same selections by default when -you run "terraform init" in the future. - -Terraform has been successfully initialized! - -You may now begin working with Terraform. Try running "terraform plan" to see -any changes that are required for your infrastructure. All Terraform commands -should now work. - -If you ever set or change modules or backend configuration for Terraform, -rerun this command to reinitialize your working directory. If you forget, other -commands will detect it and remind you to do so if necessary. -Destroying resources... -module.default-unity-cs-monitoring-lambda-Asfog.null_resource.download_lambda_zip: Refreshing state... [id=7258657542676876082] -module.default-unity-apigateway-hUKVB.null_resource.download_lambda_zip: Refreshing state... [id=2003774908253399906] -module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_target.invoke_lambda: Refreshing state... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-AWQrz.aws_iam_role.lambda_iam_role: Refreshing state... [id=unity-nightly-lambda_iam_role] -module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_rule.every_five_minutes: Refreshing state... [id=unity-nightly-every_five_minutes] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_permission.allow_eventbridge: Refreshing state... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Refreshing state... [id=unity-nightly-ecs_task_role-20250113020753934100000001] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Refreshing state... [id=sgr-09bda6014fce908d4] -module.default-unity-apigateway-hUKVB.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-lh5qcs5cx1-aexhpv-GET-200] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250113020753960200000004] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-ui-PVGiT.aws_ecs_task_definition.app: Refreshing state... [id=unity-nightly-ui-app] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Refreshing state... [id=sg-0e7779db2f32af2bb] -module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Refreshing state... [id=eutozq] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Refreshing state... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_closevirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.management_console_url: Refreshing state... [id=/unity/unity/nightly/component/management-console] -module.default-unity-apigateway-hUKVB.aws_api_gateway_authorizer.unity_cs_common_authorizer: Refreshing state... [id=obcfa3] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_openvirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-AWQrz.aws_ecs_cluster.httpd_cluster: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-ui-PVGiT.aws_security_group.ecs_sg: Refreshing state... [id=sg-0a9556bc459cbb10b] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Refreshing state... [id=sgr-046c0c825e78d1492] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration_response.api_gateway_integration_response: Refreshing state... [id=agir-lh5qcs5cx1-aexhpv-GET-200] -module.default-unity-apigateway-hUKVB.aws_api_gateway_method.rest_api_method_for_health_check_method: Refreshing state... [id=agm-lh5qcs5cx1-aexhpv-GET] -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_policy.lambda_ssm_s3_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-apigateway-hUKVB.aws_api_gateway_method.root_level_options_method: Refreshing state... [id=agm-lh5qcs5cx1-qi35yg3lga-OPTIONS] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.lambda_function_name: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role.lambda_execution_role: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250113021514145400000001] -module.default-unity-apigateway-hUKVB.aws_api_gateway_stage.api_gateway_stage: Refreshing state... [id=ags-lh5qcs5cx1-default] -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.rest_api_integration_for_health_check: Refreshing state... [id=agi-lh5qcs5cx1-aexhpv-GET] -module.default-unity-proxy-AWQrz.aws_lb_listener.httpd_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/d3d99e659eac3689/3f902ea9d9aba07a] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250113020753957300000003] -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_health_checks_path: Refreshing state... [id=aexhpv] -module.default-unity-proxy-AWQrz.aws_iam_role.ecs_task_role: Refreshing state... [id=unity-nightly-ecs_task_role] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.invoke_role_arn: Refreshing state... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-ui-PVGiT.aws_ssm_parameter.uiux_ui_proxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_execution_role_policy: Refreshing state... [id=unity-nightlyecs_execution_role-20250113020753953800000002] -module.default-unity-apigateway-hUKVB.aws_iam_role.iam_for_lambda_auth: Refreshing state... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-hUKVB.aws_lambda_function.cs_common_lambda_auth: Refreshing state... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-ui-PVGiT.aws_lambda_invocation.proxy_lambda_invocation: Refreshing state... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-ui-PVGiT.aws_ecs_cluster.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_uri: Refreshing state... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-ui-PVGiT.aws_alb_target_group.app: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/c532594dcdffea12] -module.default-unity-ui-PVGiT.aws_alb_listener.front_end: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/88fed66b66282685/095453b0195fa072] -module.default-unity-proxy-AWQrz.aws_security_group.ecs_sg: Refreshing state... [id=sg-0c00a36eac9e6f6a1] -module.default-unity-apigateway-hUKVB.aws_api_gateway_deployment.api-gateway-deployment: Refreshing state... [id=bs6pxy] -module.default-unity-ui-PVGiT.aws_lb.main: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/88fed66b66282685] -module.default-unity-proxy-AWQrz.aws_iam_role.ecs_execution_role: Refreshing state... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.mgmt_endpoint: Refreshing state... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-proxy-AWQrz.aws_cloudwatch_log_group.proxyloggroup: Refreshing state... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-AWQrz.aws_lb.httpd_alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/d3d99e659eac3689] -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_management_path: Refreshing state... [id=obeh6j] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Refreshing state... [id=sgr-0eaa7a6d625b3807b] -module.default-unity-ui-PVGiT.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-proxy-AWQrz.aws_security_group.ecs_alb_sg: Refreshing state... [id=sg-08f2177a0fbd6047a] -module.default-unity-proxy-AWQrz.aws_lambda_function.httpdlambda: Refreshing state... [id=unity-nightly-httpdproxymanagement] -module.default-unity-proxy-AWQrz.aws_ecs_task_definition.httpd: Refreshing state... [id=httpd] -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.root_level_get_method_mock_integration: Refreshing state... [id=agi-lh5qcs5cx1-qi35yg3lga-OPTIONS] -module.default-unity-apigateway-hUKVB.aws_api_gateway_rest_api.rest_api: Refreshing state... [id=lh5qcs5cx1] -module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_ecs_stop_task_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-AWQrz.aws_lb_target_group.httpd_tg: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250113020754010200000005] -module.default-unity-ui-PVGiT.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role-20250113022513122100000001] -module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_vpc_access_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Refreshing state... [id=sgr-0462f7994ea7216fc] -module.default-unity-apigateway-hUKVB.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Refreshing state... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_function.unity_cs_monitoring_lambda: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Refreshing state... [id=sgr-081cc3ccbe5e44a2e] -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_api_path: Refreshing state... [id=9ajwhy] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_authorizer.unity_cs_common_authorizer will be destroyed - - resource "aws_api_gateway_authorizer" "unity_cs_common_authorizer" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/lh5qcs5cx1/authorizers/obcfa3" -> null - - authorizer_credentials = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - authorizer_result_ttl_in_seconds = 0 -> null - - authorizer_uri = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - id = "obcfa3" -> null - - identity_source = "method.request.header.Authorization" -> null - - name = "Unity_CS_Common_Authorizer" -> null - - provider_arns = [] -> null - - rest_api_id = "lh5qcs5cx1" -> null - - type = "TOKEN" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_deployment.api-gateway-deployment will be destroyed - - resource "aws_api_gateway_deployment" "api-gateway-deployment" { - - created_date = "2025-01-13T02:23:57Z" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:lh5qcs5cx1/dev" -> null - - id = "bs6pxy" -> null - - invoke_url = "https://lh5qcs5cx1.execute-api.us-west-2.amazonaws.com/dev" -> null - - rest_api_id = "lh5qcs5cx1" -> null - - stage_name = "dev" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.rest_api_integration_for_health_check will be destroyed - - resource "aws_api_gateway_integration" "rest_api_integration_for_health_check" { - - cache_key_parameters = [] -> null - - cache_namespace = "aexhpv" -> null - - connection_id = "eutozq" -> null - - connection_type = "VPC_LINK" -> null - - content_handling = "CONVERT_TO_TEXT" -> null - - http_method = "GET" -> null - - id = "agi-lh5qcs5cx1-aexhpv-GET" -> null - - integration_http_method = "GET" -> null - - passthrough_behavior = "WHEN_NO_TEMPLATES" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "aexhpv" -> null - - rest_api_id = "lh5qcs5cx1" -> null - - timeout_milliseconds = 29000 -> null - - type = "HTTP" -> null - - uri = "http://unity-mc-nlb-unity-nightly-baf2690b97065ba9.elb.us-west-2.amazonaws.com:8080/api/health_checks" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.root_level_get_method_mock_integration will be destroyed - - resource "aws_api_gateway_integration" "root_level_get_method_mock_integration" { - - cache_key_parameters = [] -> null - - cache_namespace = "qi35yg3lga" -> null - - connection_type = "INTERNET" -> null - - http_method = "OPTIONS" -> null - - id = "agi-lh5qcs5cx1-qi35yg3lga-OPTIONS" -> null - - passthrough_behavior = "WHEN_NO_MATCH" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "qi35yg3lga" -> null - - rest_api_id = "lh5qcs5cx1" -> null - - timeout_milliseconds = 29000 -> null - - type = "MOCK" -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_integration_response.api_gateway_integration_response will be destroyed - - resource "aws_api_gateway_integration_response" "api_gateway_integration_response" { - - http_method = "GET" -> null - - id = "agir-lh5qcs5cx1-aexhpv-GET-200" -> null - - resource_id = "aexhpv" -> null - - response_parameters = {} -> null - - response_templates = {} -> null - - rest_api_id = "lh5qcs5cx1" -> null - - status_code = "200" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_method.rest_api_method_for_health_check_method will be destroyed - - resource "aws_api_gateway_method" "rest_api_method_for_health_check_method" { - - api_key_required = false -> null - - authorization = "CUSTOM" -> null - - authorization_scopes = [] -> null - - authorizer_id = "obcfa3" -> null - - http_method = "GET" -> null - - id = "agm-lh5qcs5cx1-aexhpv-GET" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "aexhpv" -> null - - rest_api_id = "lh5qcs5cx1" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_method.root_level_options_method will be destroyed - - resource "aws_api_gateway_method" "root_level_options_method" { - - api_key_required = false -> null - - authorization = "NONE" -> null - - authorization_scopes = [] -> null - - http_method = "OPTIONS" -> null - - id = "agm-lh5qcs5cx1-qi35yg3lga-OPTIONS" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "qi35yg3lga" -> null - - rest_api_id = "lh5qcs5cx1" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_method_response.response_200 will be destroyed - - resource "aws_api_gateway_method_response" "response_200" { - - http_method = "GET" -> null - - id = "agmr-lh5qcs5cx1-aexhpv-GET-200" -> null - - resource_id = "aexhpv" -> null - - response_models = {} -> null - - response_parameters = {} -> null - - rest_api_id = "lh5qcs5cx1" -> null - - status_code = "200" -> null - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_api_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_api_path" { - - id = "9ajwhy" -> null - - parent_id = "obeh6j" -> null - - path = "/management/api" -> null - - path_part = "api" -> null - - rest_api_id = "lh5qcs5cx1" -> null - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_health_checks_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_health_checks_path" { - - id = "aexhpv" -> null - - parent_id = "9ajwhy" -> null - - path = "/management/api/health_checks" -> null - - path_part = "health_checks" -> null - - rest_api_id = "lh5qcs5cx1" -> null - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_management_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_management_path" { - - id = "obeh6j" -> null - - parent_id = "qi35yg3lga" -> null - - path = "/management" -> null - - path_part = "management" -> null - - rest_api_id = "lh5qcs5cx1" -> null - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_rest_api.rest_api will be destroyed - - resource "aws_api_gateway_rest_api" "rest_api" { - - api_key_source = "HEADER" -> null - - arn = "arn:aws:apigateway:us-west-2::/restapis/lh5qcs5cx1" -> null - - binary_media_types = [] -> null - - created_date = "2025-01-13T02:16:45Z" -> null - - description = "Unity unity-nightly Project REST API Gateway" -> null - - disable_execute_api_endpoint = false -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:lh5qcs5cx1" -> null - - id = "lh5qcs5cx1" -> null - - name = "unity-unity-nightly-rest-api-gateway" -> null - - root_resource_id = "qi35yg3lga" -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - - - endpoint_configuration { - - types = [ - - "REGIONAL", - ] -> null - - vpc_endpoint_ids = [] -> null - } - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_stage.api_gateway_stage will be destroyed - - resource "aws_api_gateway_stage" "api_gateway_stage" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/lh5qcs5cx1/stages/default" -> null - - cache_cluster_enabled = false -> null - - deployment_id = "bs6pxy" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:lh5qcs5cx1/default" -> null - - id = "ags-lh5qcs5cx1-default" -> null - - invoke_url = "https://lh5qcs5cx1.execute-api.us-west-2.amazonaws.com/default" -> null - - rest_api_id = "lh5qcs5cx1" -> null - - stage_name = "default" -> null - - tags = {} -> null - - tags_all = {} -> null - - variables = {} -> null - - xray_tracing_enabled = false -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link will be destroyed - - resource "aws_api_gateway_vpc_link" "rest_api_health_check_vpc_link" { - - arn = "arn:aws:apigateway:us-west-2::/vpclinks/eutozq" -> null - - description = "mc-nlb-vpc-link-unity-nightly" -> null - - id = "eutozq" -> null - - name = "mc-nlb-vpc-link-unity-nightly" -> null - - tags = {} -> null - - tags_all = {} -> null - - target_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/net/unity-mc-nlb-unity-nightly/baf2690b97065ba9", - ] -> null - } - - # module.default-unity-apigateway-hUKVB.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group will be destroyed - - resource "aws_cloudwatch_log_group" "cs_common_lambda_auth_log_group" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - id = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - log_group_class = "STANDARD" -> null - - name = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - retention_in_days = 14 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_iam_role.iam_for_lambda_auth will be destroyed - - resource "aws_iam_role" "iam_for_lambda_auth" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = [ - - "lambda.amazonaws.com", - - "apigateway.amazonaws.com", - ] - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-13T02:16:45Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-iam_for_lambda_auth" -> null - - managed_policy_arns = [] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-iam_for_lambda_auth" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFPM5ZTOOCM" -> null - # (2 unchanged attributes hidden) - - - inline_policy { - - name = "unity-cs-lambda-auth-inline-policy" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "logs:PutLogEvents", - - "logs:CreateLogStream", - - "logs:CreateLogGroup", - - "lambda:InvokeFunction", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - } - } - - # module.default-unity-apigateway-hUKVB.aws_lambda_function.cs_common_lambda_auth will be destroyed - - resource "aws_lambda_function" "cs_common_lambda_auth" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer" -> null - - code_sha256 = "Bumcg++RUB+axI/ppSM5bFNknf8Jlc+l4e1pAQrYm98=" -> null - - filename = "ucs-common-lambda-auth.zip" -> null - - function_name = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - handler = "index.handler" -> null - - id = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - last_modified = "2025-01-13T02:16:54.990+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - runtime = "nodejs20.x" -> null - - skip_destroy = false -> null - - source_code_size = 212744 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "COGNITO_CLIENT_ID_LIST" = "deprecated" - - "COGNITO_GROUPS_ALLOWED" = (sensitive value) - - "COGNITO_USER_POOL_ID" = (sensitive value) - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_rest_api_id_parameter will be destroyed - - resource "aws_ssm_parameter" "api_gateway_rest_api_id_parameter" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - name = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_uri will be destroyed - - resource "aws_ssm_parameter" "api_gateway_uri" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/management/api-gateway/gateway-uri" -> null - - data_type = "text" -> null - - id = "/unity/cs/management/api-gateway/gateway-uri" -> null - - name = "/unity/cs/management/api-gateway/gateway-uri" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.aws_ssm_parameter.invoke_role_arn will be destroyed - - resource "aws_ssm_parameter" "invoke_role_arn" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - name = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-hUKVB.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "2003774908253399906" -> null - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_rule.every_five_minutes will be destroyed - - resource "aws_cloudwatch_event_rule" "every_five_minutes" { - - arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes" -> null - - is_enabled = true -> null - - name = "unity-nightly-every_five_minutes" -> null - - schedule_expression = "rate(5 minutes)" -> null - - state = "ENABLED" -> null - - tags = {} -> null - - tags_all = {} -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_target.invoke_lambda will be destroyed - - resource "aws_cloudwatch_event_target" "invoke_lambda" { - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes-invoke_lambda_function" -> null - - rule = "unity-nightly-every_five_minutes" -> null - - target_id = "invoke_lambda_function" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_policy.lambda_ssm_s3_policy will be destroyed - - resource "aws_iam_policy" "lambda_ssm_s3_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - attachment_count = 1 -> null - - description = "Policy to allow Lambda to read/write SSM and send objects to S3" -> null - - id = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ssm:GetParameter", - - "ssm:GetParameters", - - "ssm:PutParameter", - - "ssm:DescribeParameters", - ] - - Effect = "Allow" - - Resource = "*" - }, - - { - - Action = [ - - "s3:PutObject", - - "s3:GetObject", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFEQ2DXLIOK" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role.lambda_execution_role will be destroyed - - resource "aws_iam_role" "lambda_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-13T02:15:13Z" -> null - - force_detach_policies = false -> null - - id = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFDP2XZCT7U" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role_policy_attachment.attach_ssm_s3_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "attach_ssm_s3_policy" { - - id = "unity-unity-nightly-cs-monitoring-lambda-role-20250113021514145400000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - role = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_function.unity_cs_monitoring_lambda will be destroyed - - resource "aws_lambda_function" "unity_cs_monitoring_lambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - code_sha256 = "o4yFvQ976RHf3G1ExiEJg2pTNaiWfKNl9n5QvhIBvxc=" -> null - - filename = ".terraform/modules/default-unity-cs-monitoring-lambda-Asfog/unity-cs-monitoring-lambda.zip" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - handler = "lambda_function.lambda_handler" -> null - - id = "unity-unity-nightly-cs-monitoring-lambda" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda/invocations" -> null - - last_modified = "2025-01-13T02:15:22.227+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - runtime = "python3.12" -> null - - skip_destroy = false -> null - - source_code_size = 15016734 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 300 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "PROJECT" = "unity" - - "VENUE" = "nightly" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-unity-nightly-cs-monitoring-lambda" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_permission.allow_eventbridge will be destroyed - - resource "aws_lambda_permission" "allow_eventbridge" { - - action = "lambda:InvokeFunction" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - id = "AllowExecutionFromEventBridge" -> null - - principal = "events.amazonaws.com" -> null - - source_arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - statement_id = "AllowExecutionFromEventBridge" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-Asfog.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "7258657542676876082" -> null - } - - # module.default-unity-proxy-AWQrz.aws_cloudwatch_log_group.proxyloggroup will be destroyed - - resource "aws_cloudwatch_log_group" "proxyloggroup" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/ecs/unity-nightly-managementproxy" -> null - - id = "/ecs/unity-nightly-managementproxy" -> null - - log_group_class = "STANDARD" -> null - - name = "/ecs/unity-nightly-managementproxy" -> null - - retention_in_days = 0 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ecs_cluster.httpd_cluster will be destroyed - - resource "aws_ecs_cluster" "httpd_cluster" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - name = "unity-nightly-httpd-cluster" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service will be destroyed - - resource "aws_ecs_service" "httpd_service" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 1 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service" -> null - - launch_type = "FARGATE" -> null - - name = "httpd-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:344" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "unity-nightly-httpd-task" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-0c00a36eac9e6f6a1", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-proxy-AWQrz.aws_ecs_task_definition.httpd will be destroyed - - resource "aws_ecs_task_definition" "httpd" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:344" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd" -> null - - container_definitions = jsonencode( - [ - - { - - environment = [ - - { - - name = "UNITY_PROJECT" - - value = "unity" - }, - - { - - name = "UNITY_VENUE" - - value = "nightly" - }, - ] - - essential = true - - image = "ghcr.io/unity-sds/unity-proxy/httpd-proxy:0.16.0" - - logConfiguration = { - - logDriver = "awslogs" - - options = { - - awslogs-group = "/ecs/unity-nightly-managementproxy" - - awslogs-region = "us-west-2" - - awslogs-stream-prefix = "ecs" - } - } - - mountPoints = [] - - name = "unity-nightly-httpd-task" - - portMappings = [ - - { - - containerPort = 8080 - - hostPort = 8080 - - protocol = "tcp" - }, - ] - - systemControls = [] - - volumesFrom = [] - }, - ] - ) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - family = "httpd" -> null - - id = "httpd" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 344 -> null - - skip_destroy = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - track_latest = false -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_ecs_stop_task_policy will be destroyed - - resource "aws_iam_policy" "lambda_ecs_stop_task_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to stop ECS tasks" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - name = "unity-nightly-lambda_ecs_stop_task_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ecs:ListTasks", - - "ecs:StopTask", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFBDVRUT4MZ" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_vpc_access_policy will be destroyed - - resource "aws_iam_policy" "lambda_vpc_access_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to manage ENIs for VPC access" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - name = "unity-nightly-lambda_vpc_access_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ec2:CreateNetworkInterface", - - "ec2:DescribeNetworkInterfaces", - - "ec2:DeleteNetworkInterface", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFF7PTM66CK" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-AWQrz.aws_iam_role.ecs_execution_role will be destroyed - - resource "aws_iam_role" "ecs_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-13T02:07:53Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightlyecs_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightlyecs_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFORTPNCWFB" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_iam_role.ecs_task_role will be destroyed - - resource "aws_iam_role" "ecs_task_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-13T02:07:53Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ecs_task_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ecs_task_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFCQDG27KBV" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_iam_role.lambda_iam_role will be destroyed - - resource "aws_iam_role" "lambda_iam_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-13T02:07:53Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-lambda_iam_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy", - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy", - - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-lambda_iam_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFPXHPZQXAY" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_execution_role_policy" { - - id = "unity-nightlyecs_execution_role-20250113020753953800000002" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightlyecs_execution_role" -> null - } - - # module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_ssm_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_ssm_role_policy" { - - id = "unity-nightly-ecs_task_role-20250113020753934100000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess" -> null - - role = "unity-nightly-ecs_task_role" -> null - } - - # module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_base_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_base_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250113020754010200000005" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250113020753960200000004" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_vpc_access_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250113020753957300000003" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-AWQrz.aws_lambda_function.httpdlambda will be destroyed - - resource "aws_lambda_function" "httpdlambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement" -> null - - code_sha256 = "eFUx8dhh2JtcorJ/1+vHlS/cAehBGd6o5Kvf6EpZha4=" -> null - - filename = ".terraform/modules/default-unity-proxy-AWQrz/lambda.zip" -> null - - function_name = "unity-nightly-httpdproxymanagement" -> null - - handler = "lambda.lambda_handler" -> null - - id = "unity-nightly-httpdproxymanagement" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement/invocations" -> null - - last_modified = "2025-01-13T02:10:57.706+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - runtime = "python3.8" -> null - - skip_destroy = false -> null - - source_code_size = 687 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "CLUSTER_NAME" = "unity-nightly-httpd-cluster" - - "SERVICE_NAME" = "httpd-service" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-httpdproxymanagement" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - - - vpc_config { - - ipv6_allowed_for_dual_stack = false -> null - - security_group_ids = [ - - "sg-0e7779db2f32af2bb", - ] -> null - - subnet_ids = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - } - } - - # module.default-unity-proxy-AWQrz.aws_lb.httpd_alb will be destroyed - - resource "aws_lb" "httpd_alb" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/d3d99e659eac3689" -> null - - arn_suffix = "app/unity-nightly-httpd-alb/d3d99e659eac3689" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-httpd-alb-229021975.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/d3d99e659eac3689" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-httpd-alb" -> null - - preserve_host_header = true -> null - - security_groups = [ - - "sg-08f2177a0fbd6047a", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-proxy-AWQrz.aws_lb_listener.httpd_listener will be destroyed - - resource "aws_lb_listener" "httpd_listener" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/d3d99e659eac3689/3f902ea9d9aba07a" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/d3d99e659eac3689/3f902ea9d9aba07a" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/d3d99e659eac3689" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf" -> null - - type = "forward" -> null - } - } - - # module.default-unity-proxy-AWQrz.aws_lb_target_group.httpd_tg will be destroyed - - resource "aws_lb_target_group" "httpd_tg" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf" -> null - - arn_suffix = "targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/d3d99e659eac3689", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-httpd-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 2 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-proxy-AWQrz.aws_security_group.ecs_alb_sg will be destroyed - - resource "aws_security_group" "ecs_alb_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-08f2177a0fbd6047a" -> null - - description = "Security group for ECS service ALB" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-08f2177a0fbd6047a" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_alb_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-AWQrz.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0c00a36eac9e6f6a1" -> null - - description = "Security group for ECS service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0c00a36eac9e6f6a1" -> null - - ingress = [ - - { - - cidr_blocks = [] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [ - - "sg-08f2177a0fbd6047a", - ] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_service_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg will be destroyed - - resource "aws_security_group" "lambda_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0e7779db2f32af2bb" -> null - - description = "Security group for httpd lambda service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0e7779db2f32af2bb" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 2049 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 2049 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-httpd_lambda_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ssm_parameter.lambda_function_name will be destroyed - - resource "aws_ssm_parameter" "lambda_function_name" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - name = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ssm_parameter.management_console_url will be destroyed - - resource "aws_ssm_parameter" "management_console_url" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/component/management-console" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/component/management-console" -> null - - name = "/unity/unity/nightly/component/management-console" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_closevirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_closevirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_config will be destroyed - - resource "aws_ssm_parameter" "managementproxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_openvirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_openvirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_ssm_parameter.mgmt_endpoint will be destroyed - - resource "aws_ssm_parameter" "mgmt_endpoint" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - name = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-081cc3ccbe5e44a2e" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-081cc3ccbe5e44a2e" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-08f2177a0fbd6047a" -> null - - security_group_rule_id = "sgr-081cc3ccbe5e44a2e" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-09bda6014fce908d4" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-09bda6014fce908d4" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-0c00a36eac9e6f6a1" -> null - - security_group_rule_id = "sgr-09bda6014fce908d4" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "alb_all_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0eaa7a6d625b3807b" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 8080 -> null - - id = "sgr-0eaa7a6d625b3807b" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-08f2177a0fbd6047a" -> null - - security_group_rule_id = "sgr-0eaa7a6d625b3807b" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-046c0c825e78d1492" -> null - - from_port = 8080 -> null - - id = "sgr-046c0c825e78d1492" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-08f2177a0fbd6047a" -> null - - security_group_id = "sg-0c00a36eac9e6f6a1" -> null - - security_group_rule_id = "sgr-046c0c825e78d1492" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_mc_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0462f7994ea7216fc" -> null - - from_port = 8080 -> null - - id = "sgr-0462f7994ea7216fc" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-0c00a36eac9e6f6a1" -> null - - security_group_id = "sg-07e4cdd3abd0742a2" -> null - - security_group_rule_id = "sgr-0462f7994ea7216fc" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-ui-PVGiT.aws_alb_listener.front_end will be destroyed - - resource "aws_alb_listener" "front_end" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/88fed66b66282685/095453b0195fa072" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/88fed66b66282685/095453b0195fa072" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/88fed66b66282685" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/c532594dcdffea12" -> null - - type = "forward" -> null - } - } - - # module.default-unity-ui-PVGiT.aws_alb_target_group.app will be destroyed - - resource "aws_alb_target_group" "app" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/c532594dcdffea12" -> null - - arn_suffix = "targetgroup/unity-nightly-ui-tg/c532594dcdffea12" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/c532594dcdffea12" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/88fed66b66282685", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-ui-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 3 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-ui-PVGiT.aws_ecs_cluster.main will be destroyed - - resource "aws_ecs_cluster" "main" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - name = "unity-nightly-ui-cluster" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-ui-PVGiT.aws_ecs_service.main will be destroyed - - resource "aws_ecs_service" "main" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 2 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service" -> null - - launch_type = "FARGATE" -> null - - name = "unity-nightly-ui-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:22" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "ui" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/c532594dcdffea12" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-0a9556bc459cbb10b", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-ui-PVGiT.aws_ecs_task_definition.app will be destroyed - - resource "aws_ecs_task_definition" "app" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:22" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app" -> null - - container_definitions = (sensitive value) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - family = "unity-nightly-ui-app" -> null - - id = "unity-nightly-ui-app" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 22 -> null - - skip_destroy = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - track_latest = false -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-ui-PVGiT.aws_iam_role.ecs_task_execution_role will be destroyed - - resource "aws_iam_role" "ecs_task_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-13T02:25:12Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ui-ecs_task_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ui-ecs_task_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - unique_id = "AROA4S74LNWFKLEUVSSAJ" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-ui-PVGiT.aws_iam_role_policy_attachment.ecs_task_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_task_execution_role_policy" { - - id = "unity-nightly-ui-ecs_task_execution_role-20250113022513122100000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightly-ui-ecs_task_execution_role" -> null - } - - # module.default-unity-ui-PVGiT.aws_lambda_invocation.proxy_lambda_invocation will be destroyed - - resource "aws_lambda_invocation" "proxy_lambda_invocation" { - - function_name = "unity-nightly-httpdproxymanagement" -> null - - id = "unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e" -> null - - lifecycle_scope = "CREATE_ONLY" -> null - - qualifier = "$LATEST" -> null - - result = jsonencode( - { - - body = "ECS task restarted" - - statusCode = 200 - } - ) -> null - - terraform_key = "tf" -> null - - triggers = { - - "redeployment" = (sensitive value) - } -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-PVGiT.aws_lb.main will be destroyed - - resource "aws_lb" "main" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/88fed66b66282685" -> null - - arn_suffix = "app/unity-nightly-ui-lb/88fed66b66282685" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-ui-lb-355149482.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/88fed66b66282685" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-ui-lb" -> null - - preserve_host_header = false -> null - - security_groups = [ - - "sg-0a9556bc459cbb10b", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-ui-PVGiT.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0a9556bc459cbb10b" -> null - - description = "Security group for the UI ECS Service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0a9556bc459cbb10b" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ui-ecs-sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-PVGiT.aws_ssm_parameter.uiux_ui_proxy_config will be destroyed - - resource "aws_ssm_parameter" "uiux_ui_proxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 72 to destroy. -module.default-unity-apigateway-hUKVB.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destroying... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destroying... [id=sgr-081cc3ccbe5e44a2e] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250113020754010200000005] -module.default-unity-ui-PVGiT.aws_lambda_invocation.proxy_lambda_invocation: Destroying... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_uri: Destroying... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250113020753960200000004] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destroying... [id=sgr-046c0c825e78d1492] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destroying... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.invoke_role_arn: Destroying... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.lambda_function_name: Destroying... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-ui-PVGiT.aws_lambda_invocation.proxy_lambda_invocation: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_target.invoke_lambda: Destroying... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_target.invoke_lambda: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destroying... [id=unity-nightly-ecs_task_role-20250113020753934100000001] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration_response.api_gateway_integration_response: Destroying... [id=agir-lh5qcs5cx1-aexhpv-GET-200] -module.default-unity-apigateway-hUKVB.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_ssm_parameter.mgmt_endpoint: Destroying... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.invoke_role_arn: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250113020753957300000003] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.lambda_function_name: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destroying... [id=sgr-09bda6014fce908d4] -module.default-unity-apigateway-hUKVB.aws_ssm_parameter.api_gateway_uri: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_ecs_service.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.mgmt_endpoint: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.root_level_get_method_mock_integration: Destroying... [id=agi-lh5qcs5cx1-qi35yg3lga-OPTIONS] -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration_response.api_gateway_integration_response: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destroying... [id=sgr-0462f7994ea7216fc] -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.root_level_get_method_mock_integration: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destroying... [id=sgr-0eaa7a6d625b3807b] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destroying... [id=unity-nightlyecs_execution_role-20250113020753953800000002] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_permission.allow_eventbridge: Destroying... [id=AllowExecutionFromEventBridge] -module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_permission.allow_eventbridge: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_ssm_parameter.management_console_url: Destroying... [id=/unity/unity/nightly/component/management-console] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_ssm_parameter.uiux_ui_proxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_lambda_function.httpdlambda: Destroying... [id=unity-nightly-httpdproxymanagement] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.management_console_url: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_stage.api_gateway_stage: Destroying... [id=ags-lh5qcs5cx1-default] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_method_response.response_200: Destroying... [id=agmr-lh5qcs5cx1-aexhpv-GET-200] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_method.root_level_options_method: Destroying... [id=agm-lh5qcs5cx1-qi35yg3lga-OPTIONS] -module.default-unity-ui-PVGiT.aws_ssm_parameter.uiux_ui_proxy_config: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_function.unity_cs_monitoring_lambda: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-AWQrz.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_rule.every_five_minutes: Destroying... [id=unity-nightly-every_five_minutes] -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_ecs_stop_task_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-apigateway-hUKVB.aws_api_gateway_method_response.response_200: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_vpc_access_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-apigateway-hUKVB.aws_api_gateway_method.root_level_options_method: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_cloudwatch_event_rule.every_five_minutes: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_lambda_function.unity_cs_monitoring_lambda: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.null_resource.download_lambda_zip: Destroying... [id=7258657542676876082] -module.default-unity-cs-monitoring-lambda-Asfog.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250113021514145400000001] -module.default-unity-apigateway-hUKVB.aws_api_gateway_stage.api_gateway_stage: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_deployment.api-gateway-deployment: Destroying... [id=bs6pxy] -module.default-unity-proxy-AWQrz.aws_lambda_function.httpdlambda: Destruction complete after 1s -module.default-unity-proxy-AWQrz.aws_iam_role.lambda_iam_role: Destroying... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Destroying... [id=sg-0e7779db2f32af2bb] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destruction complete after 1s -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role.lambda_execution_role: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_policy.lambda_ssm_s3_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_ecs_stop_task_policy: Destruction complete after 1s -module.default-unity-proxy-AWQrz.aws_iam_policy.lambda_vpc_access_policy: Destruction complete after 1s -module.default-unity-apigateway-hUKVB.aws_api_gateway_deployment.api-gateway-deployment: Destruction complete after 1s -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.rest_api_integration_for_health_check: Destroying... [id=agi-lh5qcs5cx1-aexhpv-GET] -module.default-unity-apigateway-hUKVB.aws_api_gateway_integration.rest_api_integration_for_health_check: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_method.rest_api_method_for_health_check_method: Destroying... [id=agm-lh5qcs5cx1-aexhpv-GET] -module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destroying... [id=eutozq] -module.default-unity-apigateway-hUKVB.aws_api_gateway_method.rest_api_method_for_health_check_method: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destroying... [id=aexhpv] -module.default-unity-apigateway-hUKVB.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destroying... [id=obcfa3] -module.default-unity-proxy-AWQrz.aws_iam_role.lambda_iam_role: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_policy.lambda_ssm_s3_policy: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_api_path: Destroying... [id=9ajwhy] -module.default-unity-apigateway-hUKVB.aws_lambda_function.cs_common_lambda_auth: Destroying... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-Asfog.aws_iam_role.lambda_execution_role: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_api_path: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_management_path: Destroying... [id=obeh6j] -module.default-unity-apigateway-hUKVB.aws_api_gateway_resource.rest_api_resource_management_path: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_api_gateway_rest_api.rest_api: Destroying... [id=lh5qcs5cx1] -module.default-unity-apigateway-hUKVB.aws_lambda_function.cs_common_lambda_auth: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.null_resource.download_lambda_zip: Destroying... [id=2003774908253399906] -module.default-unity-apigateway-hUKVB.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_iam_role.iam_for_lambda_auth: Destroying... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-hUKVB.aws_api_gateway_rest_api.rest_api: Destruction complete after 0s -module.default-unity-apigateway-hUKVB.aws_iam_role.iam_for_lambda_auth: Destruction complete after 1s -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 10s elapsed] -module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=eutozq, 10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 20s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 20s elapsed] -module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=eutozq, 20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 30s elapsed] -module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=eutozq, 30s elapsed] -module.default-unity-apigateway-hUKVB.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destruction complete after 36s -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 40s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 50s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m0s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 1m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 1m10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m20s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 1m20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 1m30s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m40s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 1m40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m50s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 1m50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m0s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 2m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 2m10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m20s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 2m20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 2m30s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m40s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 2m40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m50s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 2m50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m0s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 3m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 3m10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m20s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 3m20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 3m30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m30s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m40s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 3m40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m50s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 3m50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m0s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 4m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 4m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m20s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 4m20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 4m30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m30s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m40s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 4m40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m50s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 4m50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m0s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 5m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 5m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m20s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 5m20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Still destroying... [id=sg-0e7779db2f32af2bb, 5m30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m30s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.lambda_sg: Destruction complete after 5m33s -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m10s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m20s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m20s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m30s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m30s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m40s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m40s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m50s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m50s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m0s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m0s elapsed] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m10s elapsed] -module.default-unity-proxy-AWQrz.aws_ecs_service.httpd_service: Destruction complete after 7m18s -module.default-unity-proxy-AWQrz.aws_ecs_task_definition.httpd: Destroying... [id=httpd] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-AWQrz.aws_lb_listener.httpd_listener: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/d3d99e659eac3689/3f902ea9d9aba07a] -module.default-unity-proxy-AWQrz.aws_security_group.ecs_sg: Destroying... [id=sg-0c00a36eac9e6f6a1] -module.default-unity-proxy-AWQrz.aws_ecs_cluster.httpd_cluster: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-proxy-AWQrz.aws_ecs_task_definition.httpd: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_iam_role.ecs_task_role: Destroying... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-AWQrz.aws_iam_role.ecs_execution_role: Destroying... [id=unity-nightlyecs_execution_role] -module.default-unity-proxy-AWQrz.aws_cloudwatch_log_group.proxyloggroup: Destroying... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-AWQrz.aws_ecs_cluster.httpd_cluster: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_config: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_closevirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-AWQrz.aws_cloudwatch_log_group.proxyloggroup: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_lb_listener.httpd_listener: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_lb.httpd_alb: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/d3d99e659eac3689] -module.default-unity-proxy-AWQrz.aws_lb_target_group.httpd_tg: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/0a8c904c7edf6cdf] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_closevirtualhost: Destruction complete after 0s -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_openvirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-AWQrz.aws_ssm_parameter.managementproxy_openvirtualhost: Destruction complete after 1s -module.default-unity-proxy-AWQrz.aws_lb_target_group.httpd_tg: Destruction complete after 1s -module.default-unity-proxy-AWQrz.aws_security_group.ecs_sg: Destruction complete after 1s -module.default-unity-proxy-AWQrz.aws_iam_role.ecs_task_role: Destruction complete after 1s -module.default-unity-proxy-AWQrz.aws_iam_role.ecs_execution_role: Destruction complete after 1s -module.default-unity-ui-PVGiT.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m20s elapsed] -module.default-unity-proxy-AWQrz.aws_lb.httpd_alb: Destruction complete after 2s -module.default-unity-proxy-AWQrz.aws_security_group.ecs_alb_sg: Destroying... [id=sg-08f2177a0fbd6047a] -module.default-unity-ui-PVGiT.aws_ecs_service.main: Destruction complete after 7m29s -module.default-unity-ui-PVGiT.aws_alb_listener.front_end: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/88fed66b66282685/095453b0195fa072] -module.default-unity-ui-PVGiT.aws_ecs_cluster.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-ui-PVGiT.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destroying... [id=unity-nightly-ui-ecs_task_execution_role-20250113022513122100000001] -module.default-unity-ui-PVGiT.aws_ecs_task_definition.app: Destroying... [id=unity-nightly-ui-app] -module.default-unity-ui-PVGiT.aws_ecs_task_definition.app: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_ecs_cluster.main: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_alb_listener.front_end: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_alb_target_group.app: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/c532594dcdffea12] -module.default-unity-ui-PVGiT.aws_lb.main: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/88fed66b66282685] -module.default-unity-ui-PVGiT.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_iam_role.ecs_task_execution_role: Destroying... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-ui-PVGiT.aws_alb_target_group.app: Destruction complete after 0s -module.default-unity-ui-PVGiT.aws_iam_role.ecs_task_execution_role: Destruction complete after 1s -module.default-unity-ui-PVGiT.aws_lb.main: Destruction complete after 1s -module.default-unity-ui-PVGiT.aws_security_group.ecs_sg: Destroying... [id=sg-0a9556bc459cbb10b] -module.default-unity-proxy-AWQrz.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-08f2177a0fbd6047a, 10s elapsed] -module.default-unity-proxy-AWQrz.aws_security_group.ecs_alb_sg: Destruction complete after 16s -module.default-unity-ui-PVGiT.aws_security_group.ecs_sg: Still destroying... [id=sg-0a9556bc459cbb10b, 10s elapsed] -module.default-unity-ui-PVGiT.aws_security_group.ecs_sg: Still destroying... [id=sg-0a9556bc459cbb10b, 20s elapsed] -module.default-unity-ui-PVGiT.aws_security_group.ecs_sg: Destruction complete after 27s - -Destroy complete! Resources: 72 destroyed. -Deleting DynamoDB table unity-nightly-terraform-state... -{ - "TableDescription": { - "TableName": "unity-nightly-terraform-state", - "TableStatus": "DELETING", - "ProvisionedThroughput": { - "NumberOfDecreasesToday": 0, - "ReadCapacityUnits": 5, - "WriteCapacityUnits": 5 - }, - "TableSizeBytes": 0, - "ItemCount": 0, - "TableArn": "arn:aws:dynamodb:us-west-2:865428270474:table/unity-nightly-terraform-state", - "TableId": "3ea82252-a6a4-4e4e-8483-0afe9488b2ba", - "DeletionProtectionEnabled": false - } -} -DynamoDB table unity-nightly-terraform-state was deleted successfully -/home/ubuntu/unity-cs-infra/nightly_tests -Terraform operations completed. Namespace directory and all Terraform files have been deleted. -MC Teardown: Completed in 504 seconds -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] -Waiting for Cloudformation Stack Termination..............................[40] -Waiting for Cloudformation Stack Termination..............................[60] -Waiting for Cloudformation Stack Termination..............................[80] -Waiting for Cloudformation Stack Termination..............................[100] -Waiting for Cloudformation Stack Termination..............................[120] -Waiting for Cloudformation Stack Termination..............................[140] -Waiting for Cloudformation Stack Termination..............................[160] -Waiting for Cloudformation Stack Termination..............................[180] -Waiting for Cloudformation Stack Termination..............................[200] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 220s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 19.2 KiB/19.2 KiB (369.1 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 18.1 KiB/18.1 KiB (271.8 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: 0b176cb0-d153-11ef-a473-069357cfa5bf, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-13T02:06:47.021000+00:00, - ResourceStatus: CREATE_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_COMPLETE-2025-01-13T02:06:45.735Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-13T02:06:45.735000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: DeployerAutoScalingGroup-3fcfff80-663d-4b47-9cd0-e6581a7ee6ca, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-13T02:06:45.352000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received SUCCESS signal with UniqueId i-0bca5be07b97ab4d7 - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-13T02:03:51.576Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-13T02:03:51.576000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: a0d100f0-d152-11ef-af0a-0a3bcd9746ff, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-13T02:03:48.735000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-0ef82442-a9b0-43df-8a6b-c2eac5ce2fce, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-13T02:03:48.681000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-13T02:03:39.378Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-13T02:03:39.378000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-13T02:03:38.203Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-13T02:03:38.203000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-13T02:03:37.354Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-13T02:03:37.354000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-13T02:03:37.114Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-13T02:03:37.114000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-13T02:03:36.559Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-13T02:03:36.559000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-13T02:03:36.291Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-13T02:03:36.291000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-13T02:03:35.993Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-13T02:03:35.993000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-13T02:03:35.365Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-13T02:03:35.365000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-13T02:03:34.910Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-13T02:03:34.910000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-13T02:01:49.619Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-13T02:01:49.619000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-13T02:01:49.456Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-13T02:01:49.456000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-13T02:01:47.734Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-13T02:01:47.734000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-13T02:01:47.185Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-13T02:01:47.185000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-19e0230f-ec08-478f-9fc6-4198c74225d3, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-13T02:01:42.080000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-17c412cf-f742-4a80-9db0-7eac76db4989, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-13T02:01:41.678000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-13T02:01:41.291Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-13T02:01:41.291000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-13T02:01:41.108Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-13T02:01:41.108000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-13T02:01:40.191Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-13T02:01:40.191000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-13T02:01:39.908Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-13T02:01:39.908000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-13T02:01:39.712Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-13T02:01:39.712000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-13T02:01:38.814Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-13T02:01:38.814000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-13T02:01:38.014Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-13T02:01:38.014000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-13T02:01:33.132Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:33.132000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-13T02:01:32.429Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-13T02:01:32.429000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-13T02:01:30.006Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-13T02:01:30.006000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-13T02:01:29.495Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:29.495000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-13T02:01:27.252Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:27.252000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-13T02:01:25.072Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:25.072000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-31386c52-c399-4d5f-b973-d71f8cf5ec83, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:24.464000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-13T02:01:23.879Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:23.879000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-13T02:01:23.677Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-13T02:01:23.677000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-13T02:01:22.654Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-13T02:01:22.654000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-13T02:01:22.613Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-13T02:01:22.613000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-13T02:01:21.608Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-13T02:01:21.608000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-13T02:01:21.593Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-13T02:01:21.593000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-13T02:01:21.586Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-13T02:01:21.586000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-13T02:01:21.569Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-13T02:01:21.569000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: 4757baf0-d152-11ef-b487-0a5b64e9ac45, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-13T02:01:18.716000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14669 100 11 100 14658 57 76343 --:--:-- --:--:-- --:--:-- 76005 100 14669 100 11 100 14658 57 76343 --:--:-- --:--:-- --:--:-- 76005 -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-13_18-00/nightly_output_2025-01-13_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-13_18-00/nightly_output_2025-01-13_18-00.txt deleted file mode 100644 index 86afed1e..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-13_18-00/nightly_output_2025-01-13_18-00.txt +++ /dev/null @@ -1,162 +0,0 @@ -Repo Hash (Nightly Test): [89d1e2d] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Cloudformation Stack creation exceeded 2400 seconds - [FAIL] -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:56: in test_navigate_to_mc_console - driver.get(URL_WITHOUT_CRED) -../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:363: in get - self.execute(Command.GET, {"url": url}) -../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:354: in execute - self.error_handler.check_response(response) -../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.InvalidArgumentException: Message: invalid argument -E (Session info: chrome=131.0.6778.108) -E Stacktrace: -E #0 0x55bcb8c2d34a -E #1 0x55bcb874353d -E #2 0x55bcb872b00f -E #3 0x55bcb8729615 -E #4 0x55bcb8729d3a -E #5 0x55bcb8746009 -E #6 0x55bcb87d5b35 -E #7 0x55bcb87b6462 -E #8 0x55bcb87d4ed7 -E #9 0x55bcb87b6203 -E #10 0x55bcb8784cc0 -E #11 0x55bcb8785c9e -E #12 0x55bcb8bfad3b -E #13 0x55bcb8bfecc2 -E #14 0x55bcb8be7b6c -E #15 0x55bcb8bff837 -E #16 0x55bcb8bcd10f -E #17 0x55bcb8c1c5a8 -E #18 0x55bcb8c1c770 -E #19 0x55bcb8c2c1c6 -E #20 0x7fdc69419a94 -E #21 0x7fdc694a6a34 __clone -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55bcb8c2d34a -E #1 0x55bcb87436e0 -E #2 0x55bcb87923e6 -E #3 0x55bcb8792681 -E #4 0x55bcb87d7b04 -E #5 0x55bcb87b648d -E #6 0x55bcb87d4ed7 -E #7 0x55bcb87b6203 -E #8 0x55bcb8784cc0 -E #9 0x55bcb8785c9e -E #10 0x55bcb8bfad3b -E #11 0x55bcb8bfecc2 -E #12 0x55bcb8be7b6c -E #13 0x55bcb8bff837 -E #14 0x55bcb8bcd10f -E #15 0x55bcb8c1c5a8 -E #16 0x55bcb8c1c770 -E #17 0x55bcb8c2c1c6 -E #18 0x7fdc69419a94 -E #19 0x7fdc694a6a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55bcb8c2d34a -E #1 0x55bcb87436e0 -E #2 0x55bcb87923e6 -E #3 0x55bcb8792681 -E #4 0x55bcb87d7b04 -E #5 0x55bcb87b648d -E #6 0x55bcb87d4ed7 -E #7 0x55bcb87b6203 -E #8 0x55bcb8784cc0 -E #9 0x55bcb8785c9e -E #10 0x55bcb8bfad3b -E #11 0x55bcb8bfecc2 -E #12 0x55bcb8be7b6c -E #13 0x55bcb8bff837 -E #14 0x55bcb8bcd10f -E #15 0x55bcb8c1c5a8 -E #16 0x55bcb8c1c770 -E #17 0x55bcb8c2c1c6 -E #18 0x7fdc69419a94 -E #19 0x7fdc694a6a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55bcb8c2d34a -E #1 0x55bcb87436e0 -E #2 0x55bcb87923e6 -E #3 0x55bcb8792681 -E #4 0x55bcb87d7b04 -E #5 0x55bcb87b648d -E #6 0x55bcb87d4ed7 -E #7 0x55bcb87b6203 -E #8 0x55bcb8784cc0 -E #9 0x55bcb8785c9e -E #10 0x55bcb8bfad3b -E #11 0x55bcb8bfecc2 -E #12 0x55bcb8be7b6c -E #13 0x55bcb8bff837 -E #14 0x55bcb8bcd10f -E #15 0x55bcb8c1c5a8 -E #16 0x55bcb8c1c770 -E #17 0x55bcb8c2c1c6 -E #18 0x7fdc69419a94 -E #19 0x7fdc694a6a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - selenium.common.exc... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -============================== 4 failed in 57.11s ============================== diff --git a/nightly_tests/nightly_logs/log_2025-01-13_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-13_18-00/output.log deleted file mode 100644 index ea203b86..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-13_18-00/output.log +++ /dev/null @@ -1,1141 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] -Get:4 https://download.docker.com/linux/ubuntu focal InRelease [57.7 kB] -Get:5 https://apt.releases.hashicorp.com focal InRelease [12.9 kB] -Ign:6 https://apt.vector.dev stable InRelease -Hit:7 https://apt.vector.dev stable Release -Get:8 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Get:13 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3744 kB] -Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main Translation-en [572 kB] -Get:15 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1253 kB] -Get:16 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [300 kB] -Get:17 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages [54.1 kB] -Get:18 https://apt.releases.hashicorp.com focal/main amd64 Packages [164 kB] -Get:19 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] -Get:21 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3367 kB] -Get:22 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [493 kB] -Get:23 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1031 kB] -Get:24 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [218 kB] -Fetched 11.7 MB in 10s (1211 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [89d1e2d] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-12_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/75764590-d21b-11ef-ba74-06a2a125fdf3" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Waiting for Cloudformation Stack..........................................[340] -Waiting for Cloudformation Stack..........................................[360] -Waiting for Cloudformation Stack..........................................[380] -Waiting for Cloudformation Stack..........................................[400] -Waiting for Cloudformation Stack..........................................[420] -Waiting for Cloudformation Stack..........................................[440] -Waiting for Cloudformation Stack..........................................[460] -Waiting for Cloudformation Stack..........................................[480] -Waiting for Cloudformation Stack..........................................[500] -Waiting for Cloudformation Stack..........................................[520] -Waiting for Cloudformation Stack..........................................[540] -Waiting for Cloudformation Stack..........................................[560] -Waiting for Cloudformation Stack..........................................[580] -Waiting for Cloudformation Stack..........................................[600] -Waiting for Cloudformation Stack..........................................[620] -Waiting for Cloudformation Stack..........................................[640] -Waiting for Cloudformation Stack..........................................[660] -Waiting for Cloudformation Stack..........................................[680] -Waiting for Cloudformation Stack..........................................[700] -Waiting for Cloudformation Stack..........................................[720] -Waiting for Cloudformation Stack..........................................[740] -Waiting for Cloudformation Stack..........................................[760] -Waiting for Cloudformation Stack..........................................[780] -Waiting for Cloudformation Stack..........................................[800] -Waiting for Cloudformation Stack..........................................[820] -Waiting for Cloudformation Stack..........................................[840] -Waiting for Cloudformation Stack..........................................[860] -Waiting for Cloudformation Stack..........................................[880] -Waiting for Cloudformation Stack..........................................[900] -Waiting for Cloudformation Stack..........................................[920] -Waiting for Cloudformation Stack..........................................[940] -Waiting for Cloudformation Stack..........................................[960] -Waiting for Cloudformation Stack..........................................[980] -Waiting for Cloudformation Stack..........................................[1000] -Waiting for Cloudformation Stack..........................................[1020] -Waiting for Cloudformation Stack..........................................[1040] -Waiting for Cloudformation Stack..........................................[1060] -Waiting for Cloudformation Stack..........................................[1080] -Waiting for Cloudformation Stack..........................................[1100] -Waiting for Cloudformation Stack..........................................[1120] -Waiting for Cloudformation Stack..........................................[1140] -Waiting for Cloudformation Stack..........................................[1160] -Waiting for Cloudformation Stack..........................................[1180] -Waiting for Cloudformation Stack..........................................[1200] -Waiting for Cloudformation Stack..........................................[1220] -Waiting for Cloudformation Stack..........................................[1240] -Waiting for Cloudformation Stack..........................................[1260] -Waiting for Cloudformation Stack..........................................[1280] -Waiting for Cloudformation Stack..........................................[1300] -Waiting for Cloudformation Stack..........................................[1320] -Waiting for Cloudformation Stack..........................................[1340] -Waiting for Cloudformation Stack..........................................[1360] -Waiting for Cloudformation Stack..........................................[1380] -Waiting for Cloudformation Stack..........................................[1400] -Waiting for Cloudformation Stack..........................................[1420] -Waiting for Cloudformation Stack..........................................[1440] -Waiting for Cloudformation Stack..........................................[1460] -Waiting for Cloudformation Stack..........................................[1480] -Waiting for Cloudformation Stack..........................................[1500] -Waiting for Cloudformation Stack..........................................[1520] -Waiting for Cloudformation Stack..........................................[1540] -Waiting for Cloudformation Stack..........................................[1560] -Waiting for Cloudformation Stack..........................................[1580] -Waiting for Cloudformation Stack..........................................[1600] -Waiting for Cloudformation Stack..........................................[1620] -Waiting for Cloudformation Stack..........................................[1640] -Waiting for Cloudformation Stack..........................................[1660] -Waiting for Cloudformation Stack..........................................[1680] -Waiting for Cloudformation Stack..........................................[1700] -Waiting for Cloudformation Stack..........................................[1720] -Waiting for Cloudformation Stack..........................................[1740] -Waiting for Cloudformation Stack..........................................[1760] -Waiting for Cloudformation Stack..........................................[1780] -Waiting for Cloudformation Stack..........................................[1800] -Waiting for Cloudformation Stack..........................................[1820] -Waiting for Cloudformation Stack..........................................[1840] -Waiting for Cloudformation Stack..........................................[1860] -Waiting for Cloudformation Stack..........................................[1880] -Waiting for Cloudformation Stack..........................................[1900] -Waiting for Cloudformation Stack..........................................[1920] -Waiting for Cloudformation Stack..........................................[1940] -Waiting for Cloudformation Stack..........................................[1960] -Waiting for Cloudformation Stack..........................................[1980] -Waiting for Cloudformation Stack..........................................[2000] -Waiting for Cloudformation Stack..........................................[2020] -Waiting for Cloudformation Stack..........................................[2040] -Waiting for Cloudformation Stack..........................................[2060] -Waiting for Cloudformation Stack..........................................[2080] -Waiting for Cloudformation Stack..........................................[2100] -Waiting for Cloudformation Stack..........................................[2120] -Waiting for Cloudformation Stack..........................................[2140] -Waiting for Cloudformation Stack..........................................[2160] -Waiting for Cloudformation Stack..........................................[2180] -Waiting for Cloudformation Stack..........................................[2200] -Waiting for Cloudformation Stack..........................................[2220] -Waiting for Cloudformation Stack..........................................[2240] -Waiting for Cloudformation Stack..........................................[2260] -Waiting for Cloudformation Stack..........................................[2280] -Waiting for Cloudformation Stack..........................................[2300] -Waiting for Cloudformation Stack..........................................[2320] -Waiting for Cloudformation Stack..........................................[2340] -Waiting for Cloudformation Stack..........................................[2360] -Waiting for Cloudformation Stack..........................................[2380] -Waiting for Cloudformation Stack..........................................[2400] -Cloudformation Stack creation exceeded 2400 seconds - [FAIL] -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Management Console URL: -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 19.2 KiB/19.2 KiB (372.9 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 20.2 KiB/20.2 KiB (205.6 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -e57bde81af92: Waiting -51609b3a85b2: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -failed to register layer: write /usr/lib/python3.12/pydoc_data/__pycache__/topics.cpython-312.pyc: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 13 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 14 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 15 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 16 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 17 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 18 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 19 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 20 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 21 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 22 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 23 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 24 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 25 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 26 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 27 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 28 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 29 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 30 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 31 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 32 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 33 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 34 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 35 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 36 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 37 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 38 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 39 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 40 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 41 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 42 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 43 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 44 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 45 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 46 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 47 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 48 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 49 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Attempt 50 to reach Management Console via httpd -- Received HTTP response code 000. Retrying in 10 seconds... -Management Console Creation Time: 954 seconds -Total Creation Time(SMM params, CloudFormation, MC): 3556 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -cc67afa1c2403312787d6755ed15e4e20b7a439f620ad668c685dd694503b16c -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Mon Jan 13 19:00:21 PST 2025 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-04_18-00 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-05_18-00 -Pushing test results to nightly_logs/log_2025-01-13_18-00... -[main 6fa8eff] Add nightly output for 2025-01-13_18-00 - 4 files changed, 880 insertions(+), 1556 deletions(-) - delete mode 100644 nightly_tests/nightly_logs/log_2025-01-05_18-00/nightly_output_2025-01-05_18-00.txt - rename nightly_tests/nightly_logs/{log_2025-01-05_18-00 => log_2025-01-12_18-00}/output.log (75%) - rename nightly_tests/nightly_logs/{log_2025-01-04_18-00/nightly_output_2025-01-04_18-00.txt => log_2025-01-13_18-00/nightly_output_2025-01-13_18-00.txt} (62%) - rename nightly_tests/nightly_logs/{log_2025-01-04_18-00 => log_2025-01-13_18-00}/output.log (57%) -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-13_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - 89d1e2d..6fa8eff main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: ROLLBACK_COMPLETE -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 40s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 20.2 KiB/20.2 KiB (295.8 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 19.2 KiB/19.2 KiB (235.1 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: dd631470-d21c-11ef-b337-06c091485451, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-14T02:11:28.687000+00:00, - ResourceStatus: ROLLBACK_COMPLETE - - - EventId: NLBSecurityGroup-DELETE_COMPLETE-2025-01-14T02:11:28.402Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:11:28.402000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: NLBSecurityGroup-DELETE_IN_PROGRESS-2025-01-14T02:11:27.358Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:11:27.358000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-DELETE_COMPLETE-2025-01-14T02:11:26.930Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-14T02:11:26.930000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: LambdaExecutionRole-DELETE_COMPLETE-2025-01-14T02:10:38.517Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:10:38.517000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: InstanceRole-DELETE_COMPLETE-2025-01-14T02:10:37.274Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:10:37.274000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: LambdaExecutionRole-DELETE_IN_PROGRESS-2025-01-14T02:10:30.034Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:10:30.034000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-DELETE_COMPLETE-2025-01-14T02:10:29.667Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-14T02:10:29.667000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: InstanceRole-DELETE_IN_PROGRESS-2025-01-14T02:10:27.042Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:10:27.042000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: ManagementConsoleSecurityGroup-DELETE_COMPLETE-2025-01-14T02:10:26.848Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:10:26.848000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: InstanceProfile-DELETE_COMPLETE-2025-01-14T02:10:26.728Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-14T02:10:26.728000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: RandomStringLambdaFunction-DELETE_IN_PROGRESS-2025-01-14T02:10:26.225Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-14T02:10:26.225000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: RandomStringResource-DELETE_COMPLETE-2025-01-14T02:10:25.869Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-14T02:10:25.869000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: InstanceProfile-DELETE_IN_PROGRESS-2025-01-14T02:10:25.709Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-14T02:10:25.709000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-DELETE_IN_PROGRESS-2025-01-14T02:10:25.697Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-14T02:10:25.697000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: ManagementConsoleSecurityGroup-DELETE_IN_PROGRESS-2025-01-14T02:10:25.679Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:10:25.679000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-DELETE_COMPLETE-2025-01-14T02:10:25.309Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-14T02:10:25.309000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-DELETE_COMPLETE-2025-01-14T02:10:24.949Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-14T02:10:24.949000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-DELETE_IN_PROGRESS-2025-01-14T02:10:24.133Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-14T02:10:24.133000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: ManagementConsoleTargetGroup-DELETE_IN_PROGRESS-2025-01-14T02:10:24.122Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-14T02:10:24.122000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: RandomStringResource-DELETE_IN_PROGRESS-2025-01-14T02:10:24.080Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-14T02:10:24.080000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: DeployerAutoScalingGroup-DELETE_COMPLETE-2025-01-14T02:10:23.720Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:10:23.720000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-DELETE_COMPLETE-2025-01-14T02:07:27.940Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-14T02:07:27.940000+00:00, - ResourceStatus: DELETE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-DELETE_IN_PROGRESS-2025-01-14T02:07:27.126Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-14T02:07:27.126000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: DeployerAutoScalingGroup-DELETE_IN_PROGRESS-2025-01-14T02:07:27.115Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:07:27.115000+00:00, - ResourceStatus: DELETE_IN_PROGRESS, - - - EventId: 4c44cfb0-d21c-11ef-8df7-02c359d53e37, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-14T02:07:25.218000+00:00, - ResourceStatus: ROLLBACK_IN_PROGRESS, - ResourceStatusReason: The following resource(s) failed to create: DeployerAutoScalingGroup. Rollback requested by user. - - - EventId: DeployerAutoScalingGroup-CREATE_FAILED-2025-01-14T02:07:24.883Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:07:24.883000+00:00, - ResourceStatus: CREATE_FAILED, - ResourceStatusReason: Received 1 FAILURE signal(s) out of 1. Unable to satisfy 100 MinSuccessfulInstancesPercent requirement, - - - EventId: DeployerAutoScalingGroup-a0709f07-cbe1-40a3-b651-8fbd571b37f4, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:07:24.429000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received FAILURE signal with UniqueId i-049b27ff69977cb6b - - - EventId: e28658a0-d21b-11ef-b961-065260401521, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-14T02:04:27.818000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-a62299be-25c2-40d0-8355-2a18d60a7ca0, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:04:27.790000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-14T02:04:18.358Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:04:18.358000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-14T02:04:17.252Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-14T02:04:17.252000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-14T02:04:16.357Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-14T02:04:16.357000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-14T02:04:15.679Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-14T02:04:15.679000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-14T02:04:14.982Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-14T02:04:14.982000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-14T02:04:14.479Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-14T02:04:14.479000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-14T02:04:14.250Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-14T02:04:14.250000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-14T02:04:13.532Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-14T02:04:13.532000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-14T02:04:13.045Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-14T02:04:13.045000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-14T02:03:59.205Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-14T02:03:59.205000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-14T02:01:56.737Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-14T02:01:56.737000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-14T02:01:56.563Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-14T02:01:56.563000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-14T02:01:54.788Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-14T02:01:54.788000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-14T02:01:54.195Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-14T02:01:54.195000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: InstanceProfile-0016c165-45cf-4992-8e11-c9ca0d45e7a6, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-14T02:01:49.026000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: RandomStringLambdaFunction-114b8fd8-9184-4e20-b0fb-72cd72ebd262, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-14T02:01:48.766000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-14T02:01:48.273Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-14T02:01:48.273000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-14T02:01:47.963Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-14T02:01:47.963000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-14T02:01:47.095Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-14T02:01:47.095000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-14T02:01:46.652Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-14T02:01:46.652000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-14T02:01:46.612Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:01:46.612000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-14T02:01:45.561Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:01:45.561000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-14T02:01:44.896Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-14T02:01:44.896000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-14T02:01:39.679Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:39.679000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-14T02:01:39.448Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-14T02:01:39.448000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-14T02:01:36.719Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-14T02:01:36.719000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-14T02:01:36.229Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:36.229000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-14T02:01:33.694Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:33.694000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-14T02:01:31.499Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:31.499000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-fd9534e8-1dcf-4df0-81ce-2598a4ff45e3, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:30.932000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-14T02:01:30.330Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:30.330000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-14T02:01:30.074Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:01:30.074000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-14T02:01:29.091Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-14T02:01:29.091000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-14T02:01:28.963Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:01:28.963000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-14T02:01:27.990Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:01:27.990000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-14T02:01:27.970Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-14T02:01:27.970000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-14T02:01:27.969Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-14T02:01:27.969000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-14T02:01:27.964Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-14T02:01:27.964000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: 7577cc30-d21b-11ef-ba74-06a2a125fdf3, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-14T02:01:24.930000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 20284 100 11 100 20273 54 98k --:--:-- --:--:-- --:--:-- 98k 100 20284 100 11 100 20273 54 98k --:--:-- --:--:-- --:--:-- 98k -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-14_18-00/nightly_output_2025-01-14_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-14_18-00/nightly_output_2025-01-14_18-00.txt deleted file mode 100644 index 5cfdab14..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-14_18-00/nightly_output_2025-01-14_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [6fa8eff] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [360 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-1960935992.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-1960935992.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-1960935992.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-1960935992.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5587952a734a -E #1 0x558794dbd6e0 -E #2 0x558794e0c3e6 -E #3 0x558794e0c681 -E #4 0x558794e51b04 -E #5 0x558794e3048d -E #6 0x558794e4eed7 -E #7 0x558794e30203 -E #8 0x558794dfecc0 -E #9 0x558794dffc9e -E #10 0x558795274d3b -E #11 0x558795278cc2 -E #12 0x558795261b6c -E #13 0x558795279837 -E #14 0x55879524710f -E #15 0x5587952965a8 -E #16 0x558795296770 -E #17 0x5587952a61c6 -E #18 0x7f87321b6a94 -E #19 0x7f8732243a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5587952a734a -E #1 0x558794dbd6e0 -E #2 0x558794e0c3e6 -E #3 0x558794e0c681 -E #4 0x558794e51b04 -E #5 0x558794e3048d -E #6 0x558794e4eed7 -E #7 0x558794e30203 -E #8 0x558794dfecc0 -E #9 0x558794dffc9e -E #10 0x558795274d3b -E #11 0x558795278cc2 -E #12 0x558795261b6c -E #13 0x558795279837 -E #14 0x55879524710f -E #15 0x5587952965a8 -E #16 0x558795296770 -E #17 0x5587952a61c6 -E #18 0x7f87321b6a94 -E #19 0x7f8732243a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5587952a734a -E #1 0x558794dbd6e0 -E #2 0x558794e0c3e6 -E #3 0x558794e0c681 -E #4 0x558794e51b04 -E #5 0x558794e3048d -E #6 0x558794e4eed7 -E #7 0x558794e30203 -E #8 0x558794dfecc0 -E #9 0x558794dffc9e -E #10 0x558795274d3b -E #11 0x558795278cc2 -E #12 0x558795261b6c -E #13 0x558795279837 -E #14 0x55879524710f -E #15 0x5587952965a8 -E #16 0x558795296770 -E #17 0x5587952a61c6 -E #18 0x7f87321b6a94 -E #19 0x7f8732243a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 119.99s (0:01:59) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-14_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-14_18-00/output.log deleted file mode 100644 index 8d03770a..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-14_18-00/output.log +++ /dev/null @@ -1,448 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] -Hit:4 https://download.docker.com/linux/ubuntu focal InRelease -Get:5 https://apt.releases.hashicorp.com focal InRelease [12.9 kB] -Ign:6 https://apt.vector.dev stable InRelease -Get:7 https://apt.vector.dev stable Release [26.0 kB] -Get:8 https://apt.vector.dev stable Release.gpg [801 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:10 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:12 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:13 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3746 kB] -Get:15 https://apt.releases.hashicorp.com focal/main amd64 Packages [164 kB] -Get:16 https://apt.vector.dev stable/vector-0 amd64 Packages [8574 B] -Get:17 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] -Get:18 https://esm.ubuntu.com/apps/ubuntu focal-apps-security/main amd64 Packages [163 kB] -Get:19 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3367 kB] -Fetched 7905 kB in 13s (621 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -42 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 42 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... - -An error occurred (ParameterNotFound) when calling the GetParameter operation: -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-28 ... -SSM param /unity/account/eks/amis/aml2-eks-1-28 not found. Not attempting a delete. -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-28 = ... -ERROR: SSM create failed for /unity/account/eks/amis/aml2-eks-1-28 -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0f189a73634b1f1df ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-06bb0e7f54ec9ea47 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [6fa8eff] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD - 6fa8eff..cfa988f main -> origin/main -Updating 6fa8eff..cfa988f -Fast-forward - nightly_tests/set_common_ssm_params.sh | 7 ------- - terraform-unity-eks_module/data.tf | 4 ---- - 2 files changed, 11 deletions(-) -Already on 'main' -M nightly_tests/destroy.sh -M nightly_tests/nightly_logs/log_2025-01-13_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/a11ea010-d2e4-11ef-8b4d-069a84eac5c1" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Waiting for Cloudformation Stack..........................................[340] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [360 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-1960935992.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 15.9 KiB/15.9 KiB (127.6 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 16.9 KiB/16.9 KiB (202.5 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -failed to register layer: write /usr/lib/jvm/java-17-openjdk-amd64/lib/server/libjvm.so: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 13 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 14 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 15 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1501 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1962 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -02c30be678a0306e6e0eebc7b95e8d58e0d7b551ee0b7d4a2ad9eca27cc00411 -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Tue Jan 14 18:34:49 PST 2025 -Pushing test results to nightly_logs/log_2025-01-14_18-00... diff --git a/nightly_tests/nightly_logs/log_2025-01-15_18-00/nightly_output_2025-01-15_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-15_18-00/nightly_output_2025-01-15_18-00.txt deleted file mode 100644 index 0fd69658..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-15_18-00/nightly_output_2025-01-15_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [d0986d0] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [340 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-1633811549.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-1633811549.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-1633811549.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-1633811549.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x559141a3534a -E #1 0x55914154b6e0 -E #2 0x55914159a3e6 -E #3 0x55914159a681 -E #4 0x5591415dfb04 -E #5 0x5591415be48d -E #6 0x5591415dced7 -E #7 0x5591415be203 -E #8 0x55914158ccc0 -E #9 0x55914158dc9e -E #10 0x559141a02d3b -E #11 0x559141a06cc2 -E #12 0x5591419efb6c -E #13 0x559141a07837 -E #14 0x5591419d510f -E #15 0x559141a245a8 -E #16 0x559141a24770 -E #17 0x559141a341c6 -E #18 0x7fbea19a4a94 -E #19 0x7fbea1a31a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x559141a3534a -E #1 0x55914154b6e0 -E #2 0x55914159a3e6 -E #3 0x55914159a681 -E #4 0x5591415dfb04 -E #5 0x5591415be48d -E #6 0x5591415dced7 -E #7 0x5591415be203 -E #8 0x55914158ccc0 -E #9 0x55914158dc9e -E #10 0x559141a02d3b -E #11 0x559141a06cc2 -E #12 0x5591419efb6c -E #13 0x559141a07837 -E #14 0x5591419d510f -E #15 0x559141a245a8 -E #16 0x559141a24770 -E #17 0x559141a341c6 -E #18 0x7fbea19a4a94 -E #19 0x7fbea1a31a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x559141a3534a -E #1 0x55914154b6e0 -E #2 0x55914159a3e6 -E #3 0x55914159a681 -E #4 0x5591415dfb04 -E #5 0x5591415be48d -E #6 0x5591415dced7 -E #7 0x5591415be203 -E #8 0x55914158ccc0 -E #9 0x55914158dc9e -E #10 0x559141a02d3b -E #11 0x559141a06cc2 -E #12 0x5591419efb6c -E #13 0x559141a07837 -E #14 0x5591419d510f -E #15 0x559141a245a8 -E #16 0x559141a24770 -E #17 0x559141a341c6 -E #18 0x7fbea19a4a94 -E #19 0x7fbea1a31a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -============================== 4 failed in 59.90s ============================== diff --git a/nightly_tests/nightly_logs/log_2025-01-15_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-15_18-00/output.log deleted file mode 100644 index 0a6cfa93..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-15_18-00/output.log +++ /dev/null @@ -1,3105 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Hit:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease -Hit:4 https://download.docker.com/linux/ubuntu focal InRelease -Hit:5 https://apt.releases.hashicorp.com focal InRelease -Ign:6 https://apt.vector.dev stable InRelease -Hit:7 https://apt.vector.dev stable Release -Get:8 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Hit:14 http://security.ubuntu.com/ubuntu focal-security InRelease -Fetched 162 kB in 7s (23.7 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -41 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 41 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0a3f2b3eda741dc3d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-0427d1155f94f846e ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [d0986d0] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/c732e8a0-d3ad-11ef-9b8e-029867aeedc5" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Waiting for Cloudformation Stack..........................................[320] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [340 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-1633811549.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 13.8 KiB/13.8 KiB (225.8 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 14.8 KiB/14.8 KiB (184.4 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -failed to register layer: write /usr/libexec/sudo/sudoers.so: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1292 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1725 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -f81558b07c01a3fe47b0b65dbb4049c4c62ecd3c61136878db98cd7a2d059db3 -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Wed Jan 15 18:29:52 PST 2025 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-07_14-35 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-06_18-00 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-07_13-30 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-07_18-00 -Pushing test results to nightly_logs/log_2025-01-15_18-00... -[main a6e874b] Add nightly output for 2025-01-15_18-00 - 4 files changed, 502 insertions(+), 1244 deletions(-) - delete mode 100644 nightly_tests/nightly_logs/log_2025-01-06_18-00/output.log - delete mode 100644 nightly_tests/nightly_logs/log_2025-01-07_18-00/output.log - rename nightly_tests/nightly_logs/{log_2025-01-06_18-00/nightly_output_2025-01-06_18-00.txt => log_2025-01-15_18-00/nightly_output_2025-01-15_18-00.txt} (51%) - create mode 100644 nightly_tests/nightly_logs/log_2025-01-15_18-00/output.log -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/nightly_logs/log_2025-01-15_18-00/output.log -Your branch is ahead of 'origin/main' by 1 commit. - (use "git push" to publish your local commits) -To https://github.com/unity-sds/unity-cs-infra.git - d0986d0..a6e874b main -> main -Destroying resources... -destroy.sh :: PROJECT_NAME: unity -destroy.sh :: VENUE_NAME: nightly -Terraform is already installed. -Checking CloudFormation stack status... -Current stack status: CREATE_COMPLETE -Destroying unity-nightly Management Console and AWS resources... -Initializing Terraform... -Initializing the backend... - -Successfully configured the backend "s3"! Terraform will automatically -use this backend unless the backend configuration changes. -Initializing provider plugins... -- Finding latest version of hashicorp/null... -- Finding latest version of hashicorp/aws... -- Installing hashicorp/null v3.2.3... -- Installed hashicorp/null v3.2.3 (signed by HashiCorp) -- Installing hashicorp/aws v5.83.1... -- Installed hashicorp/aws v5.83.1 (signed by HashiCorp) -Terraform has created a lock file .terraform.lock.hcl to record the provider -selections it made above. Include this file in your version control repository -so that Terraform can guarantee to make the same selections by default when -you run "terraform init" in the future. - -Terraform has been successfully initialized! - -You may now begin working with Terraform. Try running "terraform plan" to see -any changes that are required for your infrastructure. All Terraform commands -should now work. - -If you ever set or change modules or backend configuration for Terraform, -rerun this command to reinitialize your working directory. If you forget, other -commands will detect it and remind you to do so if necessary. -Destroying resources... -module.default-unity-cs-monitoring-lambda-lsJwb.null_resource.download_lambda_zip: Refreshing state... [id=2668671616306547585] -module.default-unity-apigateway-kTqwa.null_resource.download_lambda_zip: Refreshing state... [id=3362778431530227993] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Refreshing state... [id=sgr-0cb7a8cd773e86943] -module.default-unity-proxy-RguWv.aws_lb.httpd_alb: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/0b51a10a8a28a76f] -module.default-unity-apigateway-kTqwa.aws_api_gateway_method.root_level_options_method: Refreshing state... [id=agm-2sbmgofre1-e2h4ucv27h-OPTIONS] -module.default-unity-apigateway-kTqwa.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Refreshing state... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-kTqwa.aws_iam_role.iam_for_lambda_auth: Refreshing state... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_function.unity_cs_monitoring_lambda: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-RguWv.aws_security_group.ecs_sg: Refreshing state... [id=sg-067684a215383d298] -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-ui-caqEe.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role-20250116022436543500000001] -module.default-unity-apigateway-kTqwa.aws_api_gateway_rest_api.rest_api: Refreshing state... [id=2sbmgofre1] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.invoke_role_arn: Refreshing state... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-ui-caqEe.aws_ssm_parameter.uiux_ui_proxy_config: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Refreshing state... [id=sgr-02879da0301237f55] -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_api_path: Refreshing state... [id=u63gsm] -module.default-unity-ui-caqEe.aws_ecs_cluster.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_closevirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250116020749362600000001] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_policy.lambda_ssm_s3_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-apigateway-kTqwa.aws_api_gateway_deployment.api-gateway-deployment: Refreshing state... [id=yv3o8y] -module.default-unity-apigateway-kTqwa.aws_lambda_function.cs_common_lambda_auth: Refreshing state... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-kTqwa.aws_api_gateway_method_response.response_200: Refreshing state... [id=agmr-2sbmgofre1-0rmmt8-GET-200] -module.default-unity-proxy-RguWv.aws_lb_target_group.httpd_tg: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/c32e9b968f698333] -module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Refreshing state... [id=lnlj1j] -module.default-unity-proxy-RguWv.aws_iam_role.ecs_task_role: Refreshing state... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Refreshing state... [id=sgr-0edce1e988c86c77d] -module.default-unity-proxy-RguWv.aws_ecs_task_definition.httpd: Refreshing state... [id=httpd] -module.default-unity-proxy-RguWv.aws_lambda_function.httpdlambda: Refreshing state... [id=unity-nightly-httpdproxymanagement] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-ui-caqEe.aws_iam_role.ecs_task_execution_role: Refreshing state... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role.lambda_execution_role: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-proxy-RguWv.aws_ssm_parameter.management_console_url: Refreshing state... [id=/unity/unity/nightly/component/management-console] -module.default-unity-proxy-RguWv.aws_security_group.ecs_alb_sg: Refreshing state... [id=sg-05a3cae70180153c3] -module.default-unity-proxy-RguWv.aws_ssm_parameter.mgmt_endpoint: Refreshing state... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_uri: Refreshing state... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Refreshing state... [id=sgr-09e3bb148f7044b6c] -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration_response.api_gateway_integration_response: Refreshing state... [id=agir-2sbmgofre1-0rmmt8-GET-200] -module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Refreshing state... [id=sgr-0554482ae397ca309] -module.default-unity-ui-caqEe.aws_lambda_invocation.proxy_lambda_invocation: Refreshing state... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Refreshing state... [id=unity-nightly-ecs_task_role-20250116020749385900000004] -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_management_path: Refreshing state... [id=ydkqrr] -module.default-unity-proxy-RguWv.aws_iam_policy.lambda_vpc_access_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.rest_api_integration_for_health_check: Refreshing state... [id=agi-2sbmgofre1-0rmmt8-GET] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Refreshing state... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250116021508440600000001] -module.default-unity-proxy-RguWv.aws_iam_role.ecs_execution_role: Refreshing state... [id=unity-nightlyecs_execution_role] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Refreshing state... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-proxy-RguWv.aws_lb_listener.httpd_listener: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/0b51a10a8a28a76f/2815e9aef369cce5] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_target.invoke_lambda: Refreshing state... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-ui-caqEe.aws_alb_target_group.app: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1] -module.default-unity-proxy-RguWv.aws_iam_role.lambda_iam_role: Refreshing state... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-RguWv.aws_ecs_cluster.httpd_cluster: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_rule.every_five_minutes: Refreshing state... [id=unity-nightly-every_five_minutes] -module.default-unity-proxy-RguWv.aws_iam_policy.lambda_ecs_stop_task_policy: Refreshing state... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_health_checks_path: Refreshing state... [id=0rmmt8] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Refreshing state... [id=sg-0cf5c866e7a96dbc5] -module.default-unity-apigateway-kTqwa.aws_api_gateway_stage.api_gateway_stage: Refreshing state... [id=ags-2sbmgofre1-default] -module.default-unity-apigateway-kTqwa.aws_api_gateway_method.rest_api_method_for_health_check_method: Refreshing state... [id=agm-2sbmgofre1-0rmmt8-GET] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250116020749375400000003] -module.default-unity-proxy-RguWv.aws_ssm_parameter.lambda_function_name: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_execution_role_policy: Refreshing state... [id=unity-nightlyecs_execution_role-20250116020749373100000002] -module.default-unity-ui-caqEe.aws_security_group.ecs_sg: Refreshing state... [id=sg-0ba75c3ee97af4ce7] -module.default-unity-apigateway-kTqwa.aws_api_gateway_authorizer.unity_cs_common_authorizer: Refreshing state... [id=ck7v9k] -module.default-unity-ui-caqEe.aws_alb_listener.front_end: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/38a492b1f24b511d/71644fd3ca45b3d2] -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.root_level_get_method_mock_integration: Refreshing state... [id=agi-2sbmgofre1-e2h4ucv27h-OPTIONS] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_permission.allow_eventbridge: Refreshing state... [id=AllowExecutionFromEventBridge] -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_openvirtualhost: Refreshing state... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-RguWv.aws_cloudwatch_log_group.proxyloggroup: Refreshing state... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Refreshing state... [id=unity-nightly-lambda_iam_role-20250116020749396900000005] -module.default-unity-ui-caqEe.aws_ecs_task_definition.app: Refreshing state... [id=unity-nightly-ui-app] -module.default-unity-ui-caqEe.aws_lb.main: Refreshing state... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/38a492b1f24b511d] -module.default-unity-ui-caqEe.aws_ecs_service.main: Refreshing state... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_authorizer.unity_cs_common_authorizer will be destroyed - - resource "aws_api_gateway_authorizer" "unity_cs_common_authorizer" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/2sbmgofre1/authorizers/ck7v9k" -> null - - authorizer_credentials = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - authorizer_result_ttl_in_seconds = 0 -> null - - authorizer_uri = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - id = "ck7v9k" -> null - - identity_source = "method.request.header.Authorization" -> null - - name = "Unity_CS_Common_Authorizer" -> null - - provider_arns = [] -> null - - rest_api_id = "2sbmgofre1" -> null - - type = "TOKEN" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_deployment.api-gateway-deployment will be destroyed - - resource "aws_api_gateway_deployment" "api-gateway-deployment" { - - created_date = "2025-01-16T02:23:20Z" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:2sbmgofre1/dev" -> null - - id = "yv3o8y" -> null - - invoke_url = "https://2sbmgofre1.execute-api.us-west-2.amazonaws.com/dev" -> null - - rest_api_id = "2sbmgofre1" -> null - - stage_name = "dev" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.rest_api_integration_for_health_check will be destroyed - - resource "aws_api_gateway_integration" "rest_api_integration_for_health_check" { - - cache_key_parameters = [] -> null - - cache_namespace = "0rmmt8" -> null - - connection_id = "lnlj1j" -> null - - connection_type = "VPC_LINK" -> null - - content_handling = "CONVERT_TO_TEXT" -> null - - http_method = "GET" -> null - - id = "agi-2sbmgofre1-0rmmt8-GET" -> null - - integration_http_method = "GET" -> null - - passthrough_behavior = "WHEN_NO_TEMPLATES" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "0rmmt8" -> null - - rest_api_id = "2sbmgofre1" -> null - - timeout_milliseconds = 29000 -> null - - type = "HTTP" -> null - - uri = "http://unity-mc-nlb-unity-nightly-b4b771623cb6f750.elb.us-west-2.amazonaws.com:8080/api/health_checks" -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.root_level_get_method_mock_integration will be destroyed - - resource "aws_api_gateway_integration" "root_level_get_method_mock_integration" { - - cache_key_parameters = [] -> null - - cache_namespace = "e2h4ucv27h" -> null - - connection_type = "INTERNET" -> null - - http_method = "OPTIONS" -> null - - id = "agi-2sbmgofre1-e2h4ucv27h-OPTIONS" -> null - - passthrough_behavior = "WHEN_NO_MATCH" -> null - - request_parameters = {} -> null - - request_templates = {} -> null - - resource_id = "e2h4ucv27h" -> null - - rest_api_id = "2sbmgofre1" -> null - - timeout_milliseconds = 29000 -> null - - type = "MOCK" -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_integration_response.api_gateway_integration_response will be destroyed - - resource "aws_api_gateway_integration_response" "api_gateway_integration_response" { - - http_method = "GET" -> null - - id = "agir-2sbmgofre1-0rmmt8-GET-200" -> null - - resource_id = "0rmmt8" -> null - - response_parameters = {} -> null - - response_templates = {} -> null - - rest_api_id = "2sbmgofre1" -> null - - status_code = "200" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_method.rest_api_method_for_health_check_method will be destroyed - - resource "aws_api_gateway_method" "rest_api_method_for_health_check_method" { - - api_key_required = false -> null - - authorization = "CUSTOM" -> null - - authorization_scopes = [] -> null - - authorizer_id = "ck7v9k" -> null - - http_method = "GET" -> null - - id = "agm-2sbmgofre1-0rmmt8-GET" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "0rmmt8" -> null - - rest_api_id = "2sbmgofre1" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_method.root_level_options_method will be destroyed - - resource "aws_api_gateway_method" "root_level_options_method" { - - api_key_required = false -> null - - authorization = "NONE" -> null - - authorization_scopes = [] -> null - - http_method = "OPTIONS" -> null - - id = "agm-2sbmgofre1-e2h4ucv27h-OPTIONS" -> null - - request_models = {} -> null - - request_parameters = {} -> null - - resource_id = "e2h4ucv27h" -> null - - rest_api_id = "2sbmgofre1" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_method_response.response_200 will be destroyed - - resource "aws_api_gateway_method_response" "response_200" { - - http_method = "GET" -> null - - id = "agmr-2sbmgofre1-0rmmt8-GET-200" -> null - - resource_id = "0rmmt8" -> null - - response_models = {} -> null - - response_parameters = {} -> null - - rest_api_id = "2sbmgofre1" -> null - - status_code = "200" -> null - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_api_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_api_path" { - - id = "u63gsm" -> null - - parent_id = "ydkqrr" -> null - - path = "/management/api" -> null - - path_part = "api" -> null - - rest_api_id = "2sbmgofre1" -> null - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_health_checks_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_health_checks_path" { - - id = "0rmmt8" -> null - - parent_id = "u63gsm" -> null - - path = "/management/api/health_checks" -> null - - path_part = "health_checks" -> null - - rest_api_id = "2sbmgofre1" -> null - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_management_path will be destroyed - - resource "aws_api_gateway_resource" "rest_api_resource_management_path" { - - id = "ydkqrr" -> null - - parent_id = "e2h4ucv27h" -> null - - path = "/management" -> null - - path_part = "management" -> null - - rest_api_id = "2sbmgofre1" -> null - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_rest_api.rest_api will be destroyed - - resource "aws_api_gateway_rest_api" "rest_api" { - - api_key_source = "HEADER" -> null - - arn = "arn:aws:apigateway:us-west-2::/restapis/2sbmgofre1" -> null - - binary_media_types = [] -> null - - created_date = "2025-01-16T02:16:38Z" -> null - - description = "Unity unity-nightly Project REST API Gateway" -> null - - disable_execute_api_endpoint = false -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:2sbmgofre1" -> null - - id = "2sbmgofre1" -> null - - name = "unity-unity-nightly-rest-api-gateway" -> null - - root_resource_id = "e2h4ucv27h" -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - - - endpoint_configuration { - - types = [ - - "REGIONAL", - ] -> null - - vpc_endpoint_ids = [] -> null - } - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_stage.api_gateway_stage will be destroyed - - resource "aws_api_gateway_stage" "api_gateway_stage" { - - arn = "arn:aws:apigateway:us-west-2::/restapis/2sbmgofre1/stages/default" -> null - - cache_cluster_enabled = false -> null - - deployment_id = "yv3o8y" -> null - - execution_arn = "arn:aws:execute-api:us-west-2:865428270474:2sbmgofre1/default" -> null - - id = "ags-2sbmgofre1-default" -> null - - invoke_url = "https://2sbmgofre1.execute-api.us-west-2.amazonaws.com/default" -> null - - rest_api_id = "2sbmgofre1" -> null - - stage_name = "default" -> null - - tags = {} -> null - - tags_all = {} -> null - - variables = {} -> null - - xray_tracing_enabled = false -> null - # (5 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link will be destroyed - - resource "aws_api_gateway_vpc_link" "rest_api_health_check_vpc_link" { - - arn = "arn:aws:apigateway:us-west-2::/vpclinks/lnlj1j" -> null - - description = "mc-nlb-vpc-link-unity-nightly" -> null - - id = "lnlj1j" -> null - - name = "mc-nlb-vpc-link-unity-nightly" -> null - - tags = {} -> null - - tags_all = {} -> null - - target_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/net/unity-mc-nlb-unity-nightly/b4b771623cb6f750", - ] -> null - } - - # module.default-unity-apigateway-kTqwa.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group will be destroyed - - resource "aws_cloudwatch_log_group" "cs_common_lambda_auth_log_group" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - id = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - log_group_class = "STANDARD" -> null - - name = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - - retention_in_days = 14 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_iam_role.iam_for_lambda_auth will be destroyed - - resource "aws_iam_role" "iam_for_lambda_auth" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = [ - - "lambda.amazonaws.com", - - "apigateway.amazonaws.com", - ] - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-16T02:16:38Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-iam_for_lambda_auth" -> null - - managed_policy_arns = [] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-iam_for_lambda_auth" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFOLXPZW3FQ" -> null - # (2 unchanged attributes hidden) - - - inline_policy { - - name = "unity-cs-lambda-auth-inline-policy" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "logs:PutLogEvents", - - "logs:CreateLogStream", - - "logs:CreateLogGroup", - - "lambda:InvokeFunction", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - } - } - - # module.default-unity-apigateway-kTqwa.aws_lambda_function.cs_common_lambda_auth will be destroyed - - resource "aws_lambda_function" "cs_common_lambda_auth" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer" -> null - - code_sha256 = "Bumcg++RUB+axI/ppSM5bFNknf8Jlc+l4e1pAQrYm98=" -> null - - filename = "ucs-common-lambda-auth.zip" -> null - - function_name = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - handler = "index.handler" -> null - - id = "unity-nightly-unity-cs-common-lambda-authorizer" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer/invocations" -> null - - last_modified = "2025-01-16T02:16:48.181+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-unity-cs-common-lambda-authorizer:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-iam_for_lambda_auth" -> null - - runtime = "nodejs20.x" -> null - - skip_destroy = false -> null - - source_code_size = 212744 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "COGNITO_CLIENT_ID_LIST" = "deprecated" - - "COGNITO_GROUPS_ALLOWED" = (sensitive value) - - "COGNITO_USER_POOL_ID" = (sensitive value) - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_rest_api_id_parameter will be destroyed - - resource "aws_ssm_parameter" "api_gateway_rest_api_id_parameter" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - name = "/unity/cs/routing/api-gateway/rest-api-id-2" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_uri will be destroyed - - resource "aws_ssm_parameter" "api_gateway_uri" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/management/api-gateway/gateway-uri" -> null - - data_type = "text" -> null - - id = "/unity/cs/management/api-gateway/gateway-uri" -> null - - name = "/unity/cs/management/api-gateway/gateway-uri" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.aws_ssm_parameter.invoke_role_arn will be destroyed - - resource "aws_ssm_parameter" "invoke_role_arn" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - data_type = "text" -> null - - id = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - name = "/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn" -> null - - overwrite = true -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-apigateway-kTqwa.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "3362778431530227993" -> null - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_rule.every_five_minutes will be destroyed - - resource "aws_cloudwatch_event_rule" "every_five_minutes" { - - arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes" -> null - - is_enabled = true -> null - - name = "unity-nightly-every_five_minutes" -> null - - schedule_expression = "rate(5 minutes)" -> null - - state = "ENABLED" -> null - - tags = {} -> null - - tags_all = {} -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_target.invoke_lambda will be destroyed - - resource "aws_cloudwatch_event_target" "invoke_lambda" { - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - event_bus_name = "default" -> null - - force_destroy = false -> null - - id = "unity-nightly-every_five_minutes-invoke_lambda_function" -> null - - rule = "unity-nightly-every_five_minutes" -> null - - target_id = "invoke_lambda_function" -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_policy.lambda_ssm_s3_policy will be destroyed - - resource "aws_iam_policy" "lambda_ssm_s3_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - attachment_count = 1 -> null - - description = "Policy to allow Lambda to read/write SSM and send objects to S3" -> null - - id = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ssm:GetParameter", - - "ssm:GetParameters", - - "ssm:PutParameter", - - "ssm:DescribeParameters", - ] - - Effect = "Allow" - - Resource = "*" - }, - - { - - Action = [ - - "s3:PutObject", - - "s3:GetObject", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFJF5ITX22N" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role.lambda_execution_role will be destroyed - - resource "aws_iam_role" "lambda_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-16T02:15:07Z" -> null - - force_detach_policies = false -> null - - id = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFE3QHHN3RT" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role_policy_attachment.attach_ssm_s3_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "attach_ssm_s3_policy" { - - id = "unity-unity-nightly-cs-monitoring-lambda-role-20250116021508440600000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy" -> null - - role = "unity-unity-nightly-cs-monitoring-lambda-role" -> null - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_function.unity_cs_monitoring_lambda will be destroyed - - resource "aws_lambda_function" "unity_cs_monitoring_lambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda" -> null - - code_sha256 = "o4yFvQ976RHf3G1ExiEJg2pTNaiWfKNl9n5QvhIBvxc=" -> null - - filename = ".terraform/modules/default-unity-cs-monitoring-lambda-lsJwb/unity-cs-monitoring-lambda.zip" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - handler = "lambda_function.lambda_handler" -> null - - id = "unity-unity-nightly-cs-monitoring-lambda" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda/invocations" -> null - - last_modified = "2025-01-16T02:15:16.197+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-unity-nightly-cs-monitoring-lambda:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-unity-nightly-cs-monitoring-lambda-role" -> null - - runtime = "python3.12" -> null - - skip_destroy = false -> null - - source_code_size = 15016734 -> null - - tags = {} -> null - - tags_all = {} -> null - - timeout = 300 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "PROJECT" = "unity" - - "VENUE" = "nightly" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-unity-nightly-cs-monitoring-lambda" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_permission.allow_eventbridge will be destroyed - - resource "aws_lambda_permission" "allow_eventbridge" { - - action = "lambda:InvokeFunction" -> null - - function_name = "unity-unity-nightly-cs-monitoring-lambda" -> null - - id = "AllowExecutionFromEventBridge" -> null - - principal = "events.amazonaws.com" -> null - - source_arn = "arn:aws:events:us-west-2:865428270474:rule/unity-nightly-every_five_minutes" -> null - - statement_id = "AllowExecutionFromEventBridge" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-cs-monitoring-lambda-lsJwb.null_resource.download_lambda_zip will be destroyed - - resource "null_resource" "download_lambda_zip" { - - id = "2668671616306547585" -> null - } - - # module.default-unity-proxy-RguWv.aws_cloudwatch_log_group.proxyloggroup will be destroyed - - resource "aws_cloudwatch_log_group" "proxyloggroup" { - - arn = "arn:aws:logs:us-west-2:865428270474:log-group:/ecs/unity-nightly-managementproxy" -> null - - id = "/ecs/unity-nightly-managementproxy" -> null - - log_group_class = "STANDARD" -> null - - name = "/ecs/unity-nightly-managementproxy" -> null - - retention_in_days = 0 -> null - - skip_destroy = false -> null - - tags = {} -> null - - tags_all = {} -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_ecs_cluster.httpd_cluster will be destroyed - - resource "aws_ecs_cluster" "httpd_cluster" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - name = "unity-nightly-httpd-cluster" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service will be destroyed - - resource "aws_ecs_service" "httpd_service" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 1 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service" -> null - - launch_type = "FARGATE" -> null - - name = "httpd-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:346" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "unity-nightly-httpd-task" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/c32e9b968f698333" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-067684a215383d298", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-proxy-RguWv.aws_ecs_task_definition.httpd will be destroyed - - resource "aws_ecs_task_definition" "httpd" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd:346" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/httpd" -> null - - container_definitions = jsonencode( - [ - - { - - environment = [ - - { - - name = "UNITY_PROJECT" - - value = "unity" - }, - - { - - name = "UNITY_VENUE" - - value = "nightly" - }, - ] - - essential = true - - image = "ghcr.io/unity-sds/unity-proxy/httpd-proxy:0.16.0" - - logConfiguration = { - - logDriver = "awslogs" - - options = { - - awslogs-group = "/ecs/unity-nightly-managementproxy" - - awslogs-region = "us-west-2" - - awslogs-stream-prefix = "ecs" - } - } - - mountPoints = [] - - name = "unity-nightly-httpd-task" - - portMappings = [ - - { - - containerPort = 8080 - - hostPort = 8080 - - protocol = "tcp" - }, - ] - - systemControls = [] - - volumesFrom = [] - }, - ] - ) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - family = "httpd" -> null - - id = "httpd" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 346 -> null - - skip_destroy = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - task_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - track_latest = false -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_iam_policy.lambda_ecs_stop_task_policy will be destroyed - - resource "aws_iam_policy" "lambda_ecs_stop_task_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to stop ECS tasks" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - name = "unity-nightly-lambda_ecs_stop_task_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ecs:ListTasks", - - "ecs:StopTask", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFNCFJKEB27" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-RguWv.aws_iam_policy.lambda_vpc_access_policy will be destroyed - - resource "aws_iam_policy" "lambda_vpc_access_policy" { - - arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - attachment_count = 1 -> null - - description = "Allows Lambda functions to manage ENIs for VPC access" -> null - - id = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - name = "unity-nightly-lambda_vpc_access_policy" -> null - - path = "/" -> null - - policy = jsonencode( - { - - Statement = [ - - { - - Action = [ - - "ec2:CreateNetworkInterface", - - "ec2:DescribeNetworkInterfaces", - - "ec2:DeleteNetworkInterface", - ] - - Effect = "Allow" - - Resource = "*" - }, - ] - - Version = "2012-10-17" - } - ) -> null - - policy_id = "ANPA4S74LNWFHK7IBFBCC" -> null - - tags = {} -> null - - tags_all = {} -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-RguWv.aws_iam_role.ecs_execution_role will be destroyed - - resource "aws_iam_role" "ecs_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightlyecs_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-16T02:07:48Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightlyecs_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightlyecs_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFE6ST37YOU" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_iam_role.ecs_task_role will be destroyed - - resource "aws_iam_role" "ecs_task_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ecs_task_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-16T02:07:48Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ecs_task_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ecs_task_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFFBODOZBME" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_iam_role.lambda_iam_role will be destroyed - - resource "aws_iam_role" "lambda_iam_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "lambda.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-16T02:07:48Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-lambda_iam_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy", - - "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy", - - "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-lambda_iam_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = {} -> null - - tags_all = {} -> null - - unique_id = "AROA4S74LNWFBLDCN6C7W" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_execution_role_policy" { - - id = "unity-nightlyecs_execution_role-20250116020749373100000002" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightlyecs_execution_role" -> null - } - - # module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_ssm_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_ssm_role_policy" { - - id = "unity-nightly-ecs_task_role-20250116020749385900000004" -> null - - policy_arn = "arn:aws:iam::aws:policy/AmazonSSMReadOnlyAccess" -> null - - role = "unity-nightly-ecs_task_role" -> null - } - - # module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_base_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_base_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250116020749396900000005" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250116020749362600000001" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment will be destroyed - - resource "aws_iam_role_policy_attachment" "lambda_vpc_access_policy_attachment" { - - id = "unity-nightly-lambda_iam_role-20250116020749375400000003" -> null - - policy_arn = "arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy" -> null - - role = "unity-nightly-lambda_iam_role" -> null - } - - # module.default-unity-proxy-RguWv.aws_lambda_function.httpdlambda will be destroyed - - resource "aws_lambda_function" "httpdlambda" { - - architectures = [ - - "x86_64", - ] -> null - - arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement" -> null - - code_sha256 = "eFUx8dhh2JtcorJ/1+vHlS/cAehBGd6o5Kvf6EpZha4=" -> null - - filename = ".terraform/modules/default-unity-proxy-RguWv/lambda.zip" -> null - - function_name = "unity-nightly-httpdproxymanagement" -> null - - handler = "lambda.lambda_handler" -> null - - id = "unity-nightly-httpdproxymanagement" -> null - - invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement/invocations" -> null - - last_modified = "2025-01-16T02:10:42.871+0000" -> null - - layers = [] -> null - - memory_size = 128 -> null - - package_type = "Zip" -> null - - publish = false -> null - - qualified_arn = "arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST" -> null - - qualified_invoke_arn = "arn:aws:apigateway:us-west-2:lambda:path/2015-03-31/functions/arn:aws:lambda:us-west-2:865428270474:function:unity-nightly-httpdproxymanagement:$LATEST/invocations" -> null - - reserved_concurrent_executions = -1 -> null - - role = "arn:aws:iam::865428270474:role/unity-nightly-lambda_iam_role" -> null - - runtime = "python3.8" -> null - - skip_destroy = false -> null - - source_code_size = 687 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - timeout = 3 -> null - - version = "$LATEST" -> null - # (7 unchanged attributes hidden) - - - environment { - - variables = { - - "CLUSTER_NAME" = "unity-nightly-httpd-cluster" - - "SERVICE_NAME" = "httpd-service" - } -> null - } - - - ephemeral_storage { - - size = 512 -> null - } - - - logging_config { - - log_format = "Text" -> null - - log_group = "/aws/lambda/unity-nightly-httpdproxymanagement" -> null - # (2 unchanged attributes hidden) - } - - - tracing_config { - - mode = "PassThrough" -> null - } - - - vpc_config { - - ipv6_allowed_for_dual_stack = false -> null - - security_group_ids = [ - - "sg-0cf5c866e7a96dbc5", - ] -> null - - subnet_ids = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - } - } - - # module.default-unity-proxy-RguWv.aws_lb.httpd_alb will be destroyed - - resource "aws_lb" "httpd_alb" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/0b51a10a8a28a76f" -> null - - arn_suffix = "app/unity-nightly-httpd-alb/0b51a10a8a28a76f" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-httpd-alb-1633811549.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/0b51a10a8a28a76f" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-httpd-alb" -> null - - preserve_host_header = true -> null - - security_groups = [ - - "sg-05a3cae70180153c3", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-proxy-RguWv.aws_lb_listener.httpd_listener will be destroyed - - resource "aws_lb_listener" "httpd_listener" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/0b51a10a8a28a76f/2815e9aef369cce5" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/0b51a10a8a28a76f/2815e9aef369cce5" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/0b51a10a8a28a76f" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/c32e9b968f698333" -> null - - type = "forward" -> null - } - } - - # module.default-unity-proxy-RguWv.aws_lb_target_group.httpd_tg will be destroyed - - resource "aws_lb_target_group" "httpd_tg" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/c32e9b968f698333" -> null - - arn_suffix = "targetgroup/unity-nightly-httpd-tg/c32e9b968f698333" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/c32e9b968f698333" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/0b51a10a8a28a76f", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-httpd-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 2 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-proxy-RguWv.aws_security_group.ecs_alb_sg will be destroyed - - resource "aws_security_group" "ecs_alb_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-05a3cae70180153c3" -> null - - description = "Security group for ECS service ALB" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-05a3cae70180153c3" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_alb_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-RguWv.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-067684a215383d298" -> null - - description = "Security group for ECS service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 65535 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-067684a215383d298" -> null - - ingress = [ - - { - - cidr_blocks = [] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [ - - "sg-05a3cae70180153c3", - ] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ecs_service_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-RguWv.aws_security_group.lambda_sg will be destroyed - - resource "aws_security_group" "lambda_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0cf5c866e7a96dbc5" -> null - - description = "Security group for httpd lambda service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0cf5c866e7a96dbc5" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 2049 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 2049 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-httpd_lambda_sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "Service" = "U-CS" - } -> null - - tags_all = { - - "Service" = "U-CS" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-proxy-RguWv.aws_ssm_parameter.lambda_function_name will be destroyed - - resource "aws_ssm_parameter" "lambda_function_name" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - name = "/unity/unity/nightly/cs/management/proxy/lambda-name" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_ssm_parameter.management_console_url will be destroyed - - resource "aws_ssm_parameter" "management_console_url" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/component/management-console" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/component/management-console" -> null - - name = "/unity/unity/nightly/component/management-console" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_closevirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_closevirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_config will be destroyed - - resource "aws_ssm_parameter" "managementproxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-management" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_openvirtualhost will be destroyed - - resource "aws_ssm_parameter" "managementproxy_openvirtualhost" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_ssm_parameter.mgmt_endpoint will be destroyed - - resource "aws_ssm_parameter" "mgmt_endpoint" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - name = "/unity/unity/nightly/management/httpd/loadbalancer-url" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_alb_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0554482ae397ca309" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-0554482ae397ca309" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-05a3cae70180153c3" -> null - - security_group_rule_id = "sgr-0554482ae397ca309" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule will be destroyed - - resource "aws_vpc_security_group_egress_rule" "ecs_egress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-02879da0301237f55" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 0 -> null - - id = "sgr-02879da0301237f55" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-067684a215383d298" -> null - - security_group_rule_id = "sgr-02879da0301237f55" -> null - - tags_all = {} -> null - - to_port = 65535 -> null - } - - # module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "alb_all_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-09e3bb148f7044b6c" -> null - - cidr_ipv4 = "0.0.0.0/0" -> null - - from_port = 8080 -> null - - id = "sgr-09e3bb148f7044b6c" -> null - - ip_protocol = "tcp" -> null - - security_group_id = "sg-05a3cae70180153c3" -> null - - security_group_rule_id = "sgr-09e3bb148f7044b6c" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0cb7a8cd773e86943" -> null - - from_port = 8080 -> null - - id = "sgr-0cb7a8cd773e86943" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-05a3cae70180153c3" -> null - - security_group_id = "sg-067684a215383d298" -> null - - security_group_rule_id = "sgr-0cb7a8cd773e86943" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule will be destroyed - - resource "aws_vpc_security_group_ingress_rule" "ecs_mc_alb_ingress_sg_rule" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group-rule/sgr-0edce1e988c86c77d" -> null - - from_port = 8080 -> null - - id = "sgr-0edce1e988c86c77d" -> null - - ip_protocol = "tcp" -> null - - referenced_security_group_id = "sg-067684a215383d298" -> null - - security_group_id = "sg-0cf5ff615b8253161" -> null - - security_group_rule_id = "sgr-0edce1e988c86c77d" -> null - - tags_all = {} -> null - - to_port = 8080 -> null - } - - # module.default-unity-ui-caqEe.aws_alb_listener.front_end will be destroyed - - resource "aws_alb_listener" "front_end" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/38a492b1f24b511d/71644fd3ca45b3d2" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/38a492b1f24b511d/71644fd3ca45b3d2" -> null - - load_balancer_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/38a492b1f24b511d" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - # (1 unchanged attribute hidden) - - - default_action { - - order = 1 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1" -> null - - type = "forward" -> null - } - } - - # module.default-unity-ui-caqEe.aws_alb_target_group.app will be destroyed - - resource "aws_alb_target_group" "app" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1" -> null - - arn_suffix = "targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1" -> null - - deregistration_delay = "300" -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1" -> null - - ip_address_type = "ipv4" -> null - - lambda_multi_value_headers_enabled = false -> null - - load_balancer_arns = [ - - "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/38a492b1f24b511d", - ] -> null - - load_balancing_algorithm_type = "round_robin" -> null - - load_balancing_anomaly_mitigation = "off" -> null - - load_balancing_cross_zone_enabled = "use_load_balancer_configuration" -> null - - name = "unity-nightly-ui-tg" -> null - - port = 8080 -> null - - protocol = "HTTP" -> null - - protocol_version = "HTTP1" -> null - - proxy_protocol_v2 = false -> null - - slow_start = 0 -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - target_type = "ip" -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - - - health_check { - - enabled = true -> null - - healthy_threshold = 3 -> null - - interval = 30 -> null - - matcher = "200" -> null - - path = "/" -> null - - port = "traffic-port" -> null - - protocol = "HTTP" -> null - - timeout = 5 -> null - - unhealthy_threshold = 2 -> null - } - - - stickiness { - - cookie_duration = 86400 -> null - - enabled = false -> null - - type = "lb_cookie" -> null - # (1 unchanged attribute hidden) - } - - - target_failover {} - - - target_group_health { - - dns_failover { - - minimum_healthy_targets_count = "1" -> null - - minimum_healthy_targets_percentage = "off" -> null - } - - unhealthy_state_routing { - - minimum_healthy_targets_count = 1 -> null - - minimum_healthy_targets_percentage = "off" -> null - } - } - - - target_health_state {} - } - - # module.default-unity-ui-caqEe.aws_ecs_cluster.main will be destroyed - - resource "aws_ecs_cluster" "main" { - - arn = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - name = "unity-nightly-ui-cluster" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - - setting { - - name = "containerInsights" -> null - - value = "disabled" -> null - } - } - - # module.default-unity-ui-caqEe.aws_ecs_service.main will be destroyed - - resource "aws_ecs_service" "main" { - - availability_zone_rebalancing = "DISABLED" -> null - - cluster = "arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster" -> null - - deployment_maximum_percent = 200 -> null - - deployment_minimum_healthy_percent = 100 -> null - - desired_count = 2 -> null - - enable_ecs_managed_tags = false -> null - - enable_execute_command = false -> null - - health_check_grace_period_seconds = 0 -> null - - iam_role = "/aws-service-role/ecs.amazonaws.com/AWSServiceRoleForECS" -> null - - id = "arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service" -> null - - launch_type = "FARGATE" -> null - - name = "unity-nightly-ui-service" -> null - - platform_version = "LATEST" -> null - - propagate_tags = "NONE" -> null - - scheduling_strategy = "REPLICA" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - task_definition = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:24" -> null - - triggers = {} -> null - - wait_for_steady_state = false -> null - - - deployment_circuit_breaker { - - enable = false -> null - - rollback = false -> null - } - - - deployment_controller { - - type = "ECS" -> null - } - - - load_balancer { - - container_name = "ui" -> null - - container_port = 8080 -> null - - target_group_arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1" -> null - # (1 unchanged attribute hidden) - } - - - network_configuration { - - assign_public_ip = true -> null - - security_groups = [ - - "sg-0ba75c3ee97af4ce7", - ] -> null - - subnets = [ - - "subnet-01b0bbd950b0d1ac6", - - "subnet-098841c29a5041af9", - ] -> null - } - } - - # module.default-unity-ui-caqEe.aws_ecs_task_definition.app will be destroyed - - resource "aws_ecs_task_definition" "app" { - - arn = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app:24" -> null - - arn_without_revision = "arn:aws:ecs:us-west-2:865428270474:task-definition/unity-nightly-ui-app" -> null - - container_definitions = (sensitive value) -> null - - cpu = "256" -> null - - execution_role_arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - family = "unity-nightly-ui-app" -> null - - id = "unity-nightly-ui-app" -> null - - memory = "512" -> null - - network_mode = "awsvpc" -> null - - requires_compatibilities = [ - - "FARGATE", - ] -> null - - revision = 24 -> null - - skip_destroy = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - track_latest = false -> null - # (3 unchanged attributes hidden) - } - - # module.default-unity-ui-caqEe.aws_iam_role.ecs_task_execution_role will be destroyed - - resource "aws_iam_role" "ecs_task_execution_role" { - - arn = "arn:aws:iam::865428270474:role/unity-nightly-ui-ecs_task_execution_role" -> null - - assume_role_policy = jsonencode( - { - - Statement = [ - - { - - Action = "sts:AssumeRole" - - Effect = "Allow" - - Principal = { - - Service = "ecs-tasks.amazonaws.com" - } - }, - ] - - Version = "2012-10-17" - } - ) -> null - - create_date = "2025-01-16T02:24:36Z" -> null - - force_detach_policies = false -> null - - id = "unity-nightly-ui-ecs_task_execution_role" -> null - - managed_policy_arns = [ - - "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy", - ] -> null - - max_session_duration = 3600 -> null - - name = "unity-nightly-ui-ecs_task_execution_role" -> null - - path = "/" -> null - - permissions_boundary = "arn:aws:iam::865428270474:policy/mcp-tenantOperator-AMI-APIG" -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - unique_id = "AROA4S74LNWFF56VTPTFG" -> null - # (2 unchanged attributes hidden) - } - - # module.default-unity-ui-caqEe.aws_iam_role_policy_attachment.ecs_task_execution_role_policy will be destroyed - - resource "aws_iam_role_policy_attachment" "ecs_task_execution_role_policy" { - - id = "unity-nightly-ui-ecs_task_execution_role-20250116022436543500000001" -> null - - policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonECSTaskExecutionRolePolicy" -> null - - role = "unity-nightly-ui-ecs_task_execution_role" -> null - } - - # module.default-unity-ui-caqEe.aws_lambda_invocation.proxy_lambda_invocation will be destroyed - - resource "aws_lambda_invocation" "proxy_lambda_invocation" { - - function_name = "unity-nightly-httpdproxymanagement" -> null - - id = "unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e" -> null - - lifecycle_scope = "CREATE_ONLY" -> null - - qualifier = "$LATEST" -> null - - result = jsonencode( - { - - body = "ECS task restarted" - - statusCode = 200 - } - ) -> null - - terraform_key = "tf" -> null - - triggers = { - - "redeployment" = (sensitive value) - } -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-caqEe.aws_lb.main will be destroyed - - resource "aws_lb" "main" { - - arn = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/38a492b1f24b511d" -> null - - arn_suffix = "app/unity-nightly-ui-lb/38a492b1f24b511d" -> null - - client_keep_alive = 3600 -> null - - desync_mitigation_mode = "defensive" -> null - - dns_name = "unity-nightly-ui-lb-886859215.us-west-2.elb.amazonaws.com" -> null - - drop_invalid_header_fields = false -> null - - enable_cross_zone_load_balancing = true -> null - - enable_deletion_protection = false -> null - - enable_http2 = true -> null - - enable_tls_version_and_cipher_suite_headers = false -> null - - enable_waf_fail_open = false -> null - - enable_xff_client_port = false -> null - - enable_zonal_shift = false -> null - - id = "arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/38a492b1f24b511d" -> null - - idle_timeout = 60 -> null - - internal = false -> null - - ip_address_type = "ipv4" -> null - - load_balancer_type = "application" -> null - - name = "unity-nightly-ui-lb" -> null - - preserve_host_header = false -> null - - security_groups = [ - - "sg-0ba75c3ee97af4ce7", - ] -> null - - subnets = [ - - "subnet-0dec70bed8075feb3", - - "subnet-0f0ccb6b8ac31519d", - ] -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = "vpc-08eb1564c91214d03" -> null - - xff_header_processing_mode = "append" -> null - - zone_id = "Z1H1FL5HABSF5" -> null - # (3 unchanged attributes hidden) - - - access_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - connection_logs { - - enabled = false -> null - # (2 unchanged attributes hidden) - } - - - subnet_mapping { - - subnet_id = "subnet-0dec70bed8075feb3" -> null - # (4 unchanged attributes hidden) - } - - subnet_mapping { - - subnet_id = "subnet-0f0ccb6b8ac31519d" -> null - # (4 unchanged attributes hidden) - } - } - - # module.default-unity-ui-caqEe.aws_security_group.ecs_sg will be destroyed - - resource "aws_security_group" "ecs_sg" { - - arn = "arn:aws:ec2:us-west-2:865428270474:security-group/sg-0ba75c3ee97af4ce7" -> null - - description = "Security group for the UI ECS Service" -> null - - egress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 0 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "-1" - - security_groups = [] - - self = false - - to_port = 0 - # (1 unchanged attribute hidden) - }, - ] -> null - - id = "sg-0ba75c3ee97af4ce7" -> null - - ingress = [ - - { - - cidr_blocks = [ - - "0.0.0.0/0", - ] - - from_port = 8080 - - ipv6_cidr_blocks = [] - - prefix_list_ids = [] - - protocol = "tcp" - - security_groups = [] - - self = false - - to_port = 8080 - # (1 unchanged attribute hidden) - }, - ] -> null - - name = "unity-nightly-ui-ecs-sg" -> null - - owner_id = "865428270474" -> null - - revoke_rules_on_delete = false -> null - - tags = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - tags_all = { - - "CapVersion" = "0.8.0" - - "Component" = "navbar" - - "CreatedBy" = "uiux" - - "Env" = "dev" - - "Proj" = "unity" - - "ServiceArea" = "uiux" - - "Stack" = "ui" - - "Venue" = "nightly" - } -> null - - vpc_id = (sensitive value) -> null - # (1 unchanged attribute hidden) - } - - # module.default-unity-ui-caqEe.aws_ssm_parameter.uiux_ui_proxy_config will be destroyed - - resource "aws_ssm_parameter" "uiux_ui_proxy_config" { - - arn = "arn:aws:ssm:us-west-2:865428270474:parameter/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - data_type = "text" -> null - - id = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - name = "/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui" -> null - - tags = {} -> null - - tags_all = {} -> null - - tier = "Standard" -> null - - type = "String" -> null - - value = (sensitive value) -> null - - version = 1 -> null - # (3 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 72 to destroy. -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250116020749396900000005] -module.default-unity-proxy-RguWv.aws_ssm_parameter.mgmt_endpoint: Destroying... [id=/unity/unity/nightly/management/httpd/loadbalancer-url] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destroying... [id=sgr-0cb7a8cd773e86943] -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.root_level_get_method_mock_integration: Destroying... [id=agi-2sbmgofre1-e2h4ucv27h-OPTIONS] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destroying... [id=/unity/cs/routing/api-gateway/rest-api-id-2] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destroying... [id=unity-nightlyecs_execution_role-20250116020749373100000002] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250116020749375400000003] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.invoke_role_arn: Destroying... [id=/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-invoke-role-arn] -module.default-unity-proxy-RguWv.aws_ssm_parameter.lambda_function_name: Destroying... [id=/unity/unity/nightly/cs/management/proxy/lambda-name] -module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destroying... [id=sgr-0554482ae397ca309] -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.root_level_get_method_mock_integration: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_permission.allow_eventbridge: Destroying... [id=AllowExecutionFromEventBridge] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.invoke_role_arn: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destroying... [id=sgr-02879da0301237f55] -module.default-unity-proxy-RguWv.aws_ssm_parameter.mgmt_endpoint: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_uri: Destroying... [id=/unity/cs/management/api-gateway/gateway-uri] -module.default-unity-proxy-RguWv.aws_ssm_parameter.lambda_function_name: Destruction complete after 0s -module.default-unity-ui-caqEe.aws_lambda_invocation.proxy_lambda_invocation: Destroying... [id=unity-nightly-httpdproxymanagement_$LATEST_d41d8cd98f00b204e9800998ecf8427e] -module.default-unity-ui-caqEe.aws_lambda_invocation.proxy_lambda_invocation: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_permission.allow_eventbridge: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_target.invoke_lambda: Destroying... [id=unity-nightly-every_five_minutes-invoke_lambda_function] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destroying... [id=sgr-09e3bb148f7044b6c] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_rest_api_id_parameter: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destroying... [id=/aws/lambda/unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_target.invoke_lambda: Destruction complete after 0s -module.default-unity-ui-caqEe.aws_ecs_service.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-ui-cluster/unity-nightly-ui-service] -module.default-unity-apigateway-kTqwa.aws_ssm_parameter.api_gateway_uri: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration_response.api_gateway_integration_response: Destroying... [id=agir-2sbmgofre1-0rmmt8-GET-200] -module.default-unity-apigateway-kTqwa.aws_cloudwatch_log_group.cs_common_lambda_auth_log_group: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_ssm_parameter.management_console_url: Destroying... [id=/unity/unity/nightly/component/management-console] -module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_alb_egress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destroying... [id=sgr-0edce1e988c86c77d] -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration_response.api_gateway_integration_response: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destroying... [id=unity-nightly-lambda_iam_role-20250116020749362600000001] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destroying... [id=unity-nightly-ecs_task_role-20250116020749385900000004] -module.default-unity-proxy-RguWv.aws_ssm_parameter.management_console_url: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_method.root_level_options_method: Destroying... [id=agm-2sbmgofre1-e2h4ucv27h-OPTIONS] -module.default-unity-proxy-RguWv.aws_vpc_security_group_egress_rule.ecs_egress_sg_rule: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_lambda_function.httpdlambda: Destroying... [id=unity-nightly-httpdproxymanagement] -module.default-unity-apigateway-kTqwa.aws_api_gateway_method.root_level_options_method: Destruction complete after 0s -module.default-unity-ui-caqEe.aws_ssm_parameter.uiux_ui_proxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-uiux-ui] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.alb_all_ingress_sg_rule: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_function.unity_cs_monitoring_lambda: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_execution_role_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_rule.every_five_minutes: Destroying... [id=unity-nightly-every_five_minutes] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_vpc_access_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_base_policy_attachment: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_stage.api_gateway_stage: Destroying... [id=ags-2sbmgofre1-default] -module.default-unity-apigateway-kTqwa.aws_api_gateway_method_response.response_200: Destroying... [id=agmr-2sbmgofre1-0rmmt8-GET-200] -module.default-unity-ui-caqEe.aws_ssm_parameter.uiux_ui_proxy_config: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_policy.lambda_vpc_access_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_vpc_access_policy] -module.default-unity-proxy-RguWv.aws_vpc_security_group_ingress_rule.ecs_mc_alb_ingress_sg_rule: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_cloudwatch_event_rule.every_five_minutes: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_method_response.response_200: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.lambda_stop_task_policy_attachment: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_policy.lambda_ecs_stop_task_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-nightly-lambda_ecs_stop_task_policy] -module.default-unity-proxy-RguWv.aws_lambda_function.httpdlambda: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_role.lambda_iam_role: Destroying... [id=unity-nightly-lambda_iam_role] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Destroying... [id=sg-0cf5c866e7a96dbc5] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_lambda_function.unity_cs_monitoring_lambda: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:service/unity-nightly-httpd-cluster/httpd-service] -module.default-unity-cs-monitoring-lambda-lsJwb.null_resource.download_lambda_zip: Destroying... [id=2668671616306547585] -module.default-unity-cs-monitoring-lambda-lsJwb.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role-20250116021508440600000001] -module.default-unity-proxy-RguWv.aws_iam_role_policy_attachment.ecs_ssm_role_policy: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_stage.api_gateway_stage: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_deployment.api-gateway-deployment: Destroying... [id=yv3o8y] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role_policy_attachment.attach_ssm_s3_policy: Destruction complete after 1s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role.lambda_execution_role: Destroying... [id=unity-unity-nightly-cs-monitoring-lambda-role] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_policy.lambda_ssm_s3_policy: Destroying... [id=arn:aws:iam::865428270474:policy/unity-unity-nightly-cs-monitoring-lambda-policy] -module.default-unity-proxy-RguWv.aws_iam_policy.lambda_vpc_access_policy: Destruction complete after 1s -module.default-unity-proxy-RguWv.aws_iam_policy.lambda_ecs_stop_task_policy: Destruction complete after 1s -module.default-unity-apigateway-kTqwa.aws_api_gateway_deployment.api-gateway-deployment: Destruction complete after 1s -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.rest_api_integration_for_health_check: Destroying... [id=agi-2sbmgofre1-0rmmt8-GET] -module.default-unity-proxy-RguWv.aws_iam_role.lambda_iam_role: Destruction complete after 1s -module.default-unity-apigateway-kTqwa.aws_api_gateway_integration.rest_api_integration_for_health_check: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_method.rest_api_method_for_health_check_method: Destroying... [id=agm-2sbmgofre1-0rmmt8-GET] -module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destroying... [id=lnlj1j] -module.default-unity-apigateway-kTqwa.aws_api_gateway_method.rest_api_method_for_health_check_method: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destroying... [id=0rmmt8] -module.default-unity-apigateway-kTqwa.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destroying... [id=ck7v9k] -module.default-unity-apigateway-kTqwa.aws_api_gateway_authorizer.unity_cs_common_authorizer: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_lambda_function.cs_common_lambda_auth: Destroying... [id=unity-nightly-unity-cs-common-lambda-authorizer] -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_health_checks_path: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_api_path: Destroying... [id=u63gsm] -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_policy.lambda_ssm_s3_policy: Destruction complete after 0s -module.default-unity-cs-monitoring-lambda-lsJwb.aws_iam_role.lambda_execution_role: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_api_path: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_management_path: Destroying... [id=ydkqrr] -module.default-unity-apigateway-kTqwa.aws_api_gateway_resource.rest_api_resource_management_path: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_api_gateway_rest_api.rest_api: Destroying... [id=2sbmgofre1] -module.default-unity-apigateway-kTqwa.aws_lambda_function.cs_common_lambda_auth: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.null_resource.download_lambda_zip: Destroying... [id=3362778431530227993] -module.default-unity-apigateway-kTqwa.null_resource.download_lambda_zip: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_iam_role.iam_for_lambda_auth: Destroying... [id=unity-nightly-iam_for_lambda_auth] -module.default-unity-apigateway-kTqwa.aws_api_gateway_rest_api.rest_api: Destruction complete after 0s -module.default-unity-apigateway-kTqwa.aws_iam_role.iam_for_lambda_auth: Destruction complete after 1s -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 10s elapsed] -module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=lnlj1j, 10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 20s elapsed] -module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=lnlj1j, 20s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 30s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 30s elapsed] -module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Still destroying... [id=lnlj1j, 30s elapsed] -module.default-unity-apigateway-kTqwa.aws_api_gateway_vpc_link.rest_api_health_check_vpc_link: Destruction complete after 36s -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 40s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 50s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m0s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 1m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 1m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 1m20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m20s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m30s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 1m30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m30s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m40s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 1m40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 1m50s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 1m50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 1m50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m0s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 2m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 2m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 2m20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m20s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m30s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 2m30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m30s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m40s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 2m40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 2m50s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 2m50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 2m50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m0s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 3m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 3m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 3m20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m20s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m30s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 3m30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m30s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m40s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 3m40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 3m50s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 3m50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 3m50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m0s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 4m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 4m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 4m20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m20s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m30s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 4m30s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m40s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 4m40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 4m50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 4m50s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 4m50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m0s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 5m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 5m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 5m20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m20s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m30s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 5m30s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m40s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 5m40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 5m50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 5m50s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 5m50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m0s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 6m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 6m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Still destroying... [id=sg-0cf5c866e7a96dbc5, 6m20s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.lambda_sg: Destruction complete after 6m24s -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m30s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m30s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m40s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m40s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 6m50s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 6m50s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m0s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m0s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ly-ui-cluster/unity-nightly-ui-service, 7m10s elapsed] -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Still destroying... [id=arn:aws:ecs:us-west-2:865428270474:serv...ty-nightly-httpd-cluster/httpd-service, 7m10s elapsed] -module.default-unity-ui-caqEe.aws_ecs_service.main: Destruction complete after 7m19s -module.default-unity-proxy-RguWv.aws_ecs_service.httpd_service: Destruction complete after 7m19s -module.default-unity-proxy-RguWv.aws_ecs_task_definition.httpd: Destroying... [id=httpd] -module.default-unity-ui-caqEe.aws_ecs_cluster.main: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-ui-cluster] -module.default-unity-proxy-RguWv.aws_ecs_cluster.httpd_cluster: Destroying... [id=arn:aws:ecs:us-west-2:865428270474:cluster/unity-nightly-httpd-cluster] -module.default-unity-ui-caqEe.aws_ecs_task_definition.app: Destroying... [id=unity-nightly-ui-app] -module.default-unity-ui-caqEe.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destroying... [id=unity-nightly-ui-ecs_task_execution_role-20250116022436543500000001] -module.default-unity-ui-caqEe.aws_alb_listener.front_end: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-ui-lb/38a492b1f24b511d/71644fd3ca45b3d2] -module.default-unity-proxy-RguWv.aws_security_group.ecs_sg: Destroying... [id=sg-067684a215383d298] -module.default-unity-proxy-RguWv.aws_lb_listener.httpd_listener: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:listener/app/unity-nightly-httpd-alb/0b51a10a8a28a76f/2815e9aef369cce5] -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_config: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/010-management] -module.default-unity-proxy-RguWv.aws_ecs_task_definition.httpd: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_cloudwatch_log_group.proxyloggroup: Destroying... [id=/ecs/unity-nightly-managementproxy] -module.default-unity-proxy-RguWv.aws_iam_role.ecs_execution_role: Destroying... [id=unity-nightlyecs_execution_role] -module.default-unity-ui-caqEe.aws_ecs_task_definition.app: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_iam_role.ecs_task_role: Destroying... [id=unity-nightly-ecs_task_role] -module.default-unity-proxy-RguWv.aws_cloudwatch_log_group.proxyloggroup: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_config: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_closevirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/100-closevhost8080] -module.default-unity-ui-caqEe.aws_ecs_cluster.main: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_ecs_cluster.httpd_cluster: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_lb_listener.httpd_listener: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_lb_target_group.httpd_tg: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-httpd-tg/c32e9b968f698333] -module.default-unity-proxy-RguWv.aws_lb.httpd_alb: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-httpd-alb/0b51a10a8a28a76f] -module.default-unity-ui-caqEe.aws_alb_listener.front_end: Destruction complete after 0s -module.default-unity-ui-caqEe.aws_lb.main: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:loadbalancer/app/unity-nightly-ui-lb/38a492b1f24b511d] -module.default-unity-ui-caqEe.aws_alb_target_group.app: Destroying... [id=arn:aws:elasticloadbalancing:us-west-2:865428270474:targetgroup/unity-nightly-ui-tg/1fc6c7e6cfd515e1] -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_closevirtualhost: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_openvirtualhost: Destroying... [id=/unity/unity/nightly/cs/management/proxy/configurations/001-openvhost8080] -module.default-unity-proxy-RguWv.aws_ssm_parameter.managementproxy_openvirtualhost: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_lb_target_group.httpd_tg: Destruction complete after 0s -module.default-unity-ui-caqEe.aws_alb_target_group.app: Destruction complete after 0s -module.default-unity-proxy-RguWv.aws_security_group.ecs_sg: Destruction complete after 1s -module.default-unity-ui-caqEe.aws_iam_role_policy_attachment.ecs_task_execution_role_policy: Destruction complete after 1s -module.default-unity-ui-caqEe.aws_iam_role.ecs_task_execution_role: Destroying... [id=unity-nightly-ui-ecs_task_execution_role] -module.default-unity-proxy-RguWv.aws_iam_role.ecs_execution_role: Destruction complete after 1s -module.default-unity-proxy-RguWv.aws_iam_role.ecs_task_role: Destruction complete after 1s -module.default-unity-ui-caqEe.aws_iam_role.ecs_task_execution_role: Destruction complete after 0s -module.default-unity-ui-caqEe.aws_lb.main: Destruction complete after 2s -module.default-unity-ui-caqEe.aws_security_group.ecs_sg: Destroying... [id=sg-0ba75c3ee97af4ce7] -module.default-unity-proxy-RguWv.aws_lb.httpd_alb: Destruction complete after 2s -module.default-unity-proxy-RguWv.aws_security_group.ecs_alb_sg: Destroying... [id=sg-05a3cae70180153c3] -module.default-unity-ui-caqEe.aws_security_group.ecs_sg: Still destroying... [id=sg-0ba75c3ee97af4ce7, 10s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-05a3cae70180153c3, 10s elapsed] -module.default-unity-ui-caqEe.aws_security_group.ecs_sg: Still destroying... [id=sg-0ba75c3ee97af4ce7, 20s elapsed] -module.default-unity-proxy-RguWv.aws_security_group.ecs_alb_sg: Still destroying... [id=sg-05a3cae70180153c3, 20s elapsed] -module.default-unity-ui-caqEe.aws_security_group.ecs_sg: Destruction complete after 26s -module.default-unity-proxy-RguWv.aws_security_group.ecs_alb_sg: Destruction complete after 26s - -Destroy complete! Resources: 72 destroyed. -Deleting DynamoDB table unity-nightly-terraform-state... -{ - "TableDescription": { - "TableName": "unity-nightly-terraform-state", - "TableStatus": "DELETING", - "ProvisionedThroughput": { - "NumberOfDecreasesToday": 0, - "ReadCapacityUnits": 5, - "WriteCapacityUnits": 5 - }, - "TableSizeBytes": 0, - "ItemCount": 0, - "TableArn": "arn:aws:dynamodb:us-west-2:865428270474:table/unity-nightly-terraform-state", - "TableId": "66139862-5021-49cf-8550-584b3b1dbceb", - "DeletionProtectionEnabled": false - } -} -DynamoDB table unity-nightly-terraform-state was deleted successfully -/home/ubuntu/unity-cs-infra/nightly_tests -Terraform operations completed. Namespace directory and all Terraform files have been deleted. -MC Teardown: Completed in 496 seconds -Destroying cloudformation stack [unity-management-console-unity-nightly]... -Waiting for Cloudformation Stack Termination..............................[0] -Waiting for Cloudformation Stack Termination..............................[20] -Waiting for Cloudformation Stack Termination..............................[40] -Waiting for Cloudformation Stack Termination..............................[60] -Waiting for Cloudformation Stack Termination..............................[80] -Waiting for Cloudformation Stack Termination..............................[100] -Waiting for Cloudformation Stack Termination..............................[120] -Waiting for Cloudformation Stack Termination..............................[140] -Waiting for Cloudformation Stack Termination..............................[160] -Waiting for Cloudformation Stack Termination..............................[180] - -An error occurred (ValidationError) when calling the DescribeStacks operation: Stack with id unity-management-console-unity-nightly does not exist -Stack Teardown: Completed in 200s - [PASS] -Removing Apache configuration block from S3... -Environment from SSM: dev -Completed 14.8 KiB/14.8 KiB (269.1 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 13.8 KiB/13.8 KiB (187.1 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully removed Apache configuration block from S3 -Running destroy_deployment_ssm_params.sh script... -destroy_deployment_ssm_params.sh :: PROJECT_NAME: unity -destroy_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... - - StackEvents: - - EventId: 8c3357c0-d3ae-11ef-8cef-0a502f15136d, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-16T02:06:50.160000+00:00, - ResourceStatus: CREATE_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_COMPLETE-2025-01-16T02:06:48.975Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-16T02:06:48.975000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: DeployerAutoScalingGroup-1ba0fed2-d2e9-4498-9f8d-5030397f0e12, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-16T02:06:48.581000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Received SUCCESS signal with UniqueId i-07215b8d6fdc77883 - - - EventId: InstanceProfile-CREATE_COMPLETE-2025-01-16T02:03:54.122Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-16T02:03:54.122000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: 21b14290-d3ae-11ef-a589-0acd588745b9, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-16T02:03:51.481000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-56f362d2-fef4-4b9b-884b-50b97b43855c, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-16T02:03:51.448000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-16T02:03:42.111Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-16T02:03:42.111000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: DeployerAutoScalingGroup-CREATE_IN_PROGRESS-2025-01-16T02:03:40.770Z, - LogicalResourceId: DeployerAutoScalingGroup, - ResourceType: AWS::AutoScaling::AutoScalingGroup, - Timestamp: 2025-01-16T02:03:40.770000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_COMPLETE-2025-01-16T02:03:40.002Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-16T02:03:40.002000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-16T02:03:39.385Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-16T02:03:39.385000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateLoadBalancerListener-CREATE_COMPLETE-2025-01-16T02:03:38.609Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-16T02:03:38.609000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-16T02:03:38.103Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-16T02:03:38.103000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagmentConsoleLaunchTemplate-CREATE_IN_PROGRESS-2025-01-16T02:03:37.833Z, - LogicalResourceId: ManagmentConsoleLaunchTemplate, - ResourceType: AWS::EC2::LaunchTemplate, - Timestamp: 2025-01-16T02:03:37.833000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateLoadBalancerListener-CREATE_IN_PROGRESS-2025-01-16T02:03:37.204Z, - LogicalResourceId: PrivateLoadBalancerListener, - ResourceType: AWS::ElasticLoadBalancingV2::Listener, - Timestamp: 2025-01-16T02:03:37.204000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: PrivateNetworkLoadBalancer-CREATE_COMPLETE-2025-01-16T02:03:36.706Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-16T02:03:36.706000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_COMPLETE-2025-01-16T02:01:51.637Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-16T02:01:51.637000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-16T02:01:51.475Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-16T02:01:51.475000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringResource-CREATE_IN_PROGRESS-2025-01-16T02:01:49.653Z, - LogicalResourceId: RandomStringResource, - ResourceType: AWS::CloudFormation::CustomResource, - Timestamp: 2025-01-16T02:01:49.653000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: RandomStringLambdaFunction-CREATE_COMPLETE-2025-01-16T02:01:49.053Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-16T02:01:49.053000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: InstanceProfile-e915ae2e-a17c-4243-b3c3-d97f48d79f69, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-16T02:01:44.060000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: RandomStringLambdaFunction-254229b9-8711-4d36-a310-d3bdbfa4d377, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-16T02:01:43.546000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-16T02:01:43.136Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-16T02:01:43.136000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-16T02:01:42.713Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-16T02:01:42.713000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceProfile-CREATE_IN_PROGRESS-2025-01-16T02:01:41.950Z, - LogicalResourceId: InstanceProfile, - ResourceType: AWS::IAM::InstanceProfile, - Timestamp: 2025-01-16T02:01:41.950000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_COMPLETE-2025-01-16T02:01:41.495Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-16T02:01:41.495000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: RandomStringLambdaFunction-CREATE_IN_PROGRESS-2025-01-16T02:01:41.378Z, - LogicalResourceId: RandomStringLambdaFunction, - ResourceType: AWS::Lambda::Function, - Timestamp: 2025-01-16T02:01:41.378000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_COMPLETE-2025-01-16T02:01:40.351Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-16T02:01:40.351000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleTargetGroup-CREATE_COMPLETE-2025-01-16T02:01:39.702Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-16T02:01:39.702000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_COMPLETE-2025-01-16T02:01:34.597Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:34.597000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-16T02:01:33.797Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-16T02:01:33.797000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: PrivateNetworkLoadBalancer-CREATE_IN_PROGRESS-2025-01-16T02:01:31.328Z, - LogicalResourceId: PrivateNetworkLoadBalancer, - ResourceType: AWS::ElasticLoadBalancingV2::LoadBalancer, - Timestamp: 2025-01-16T02:01:31.328000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_COMPLETE-2025-01-16T02:01:30.808Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:30.808000+00:00, - ResourceStatus: CREATE_COMPLETE, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-16T02:01:28.596Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:28.596000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleSecurityGroup-CREATE_IN_PROGRESS-2025-01-16T02:01:26.115Z, - LogicalResourceId: ManagementConsoleSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:26.115000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-8d750b21-108e-4a06-89ef-1a596dd1e04e, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:25.595000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Eventual consistency check initiated, - DetailedStatus: CONFIGURATION_COMPLETE - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-16T02:01:24.978Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:24.978000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-16T02:01:24.949Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-16T02:01:24.949000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-16T02:01:23.848Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-16T02:01:23.848000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-16T02:01:23.704Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-16T02:01:23.704000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: Resource creation Initiated, - - - EventId: ManagementConsoleTargetGroup-CREATE_IN_PROGRESS-2025-01-16T02:01:22.815Z, - LogicalResourceId: ManagementConsoleTargetGroup, - ResourceType: AWS::ElasticLoadBalancingV2::TargetGroup, - Timestamp: 2025-01-16T02:01:22.815000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: InstanceRole-CREATE_IN_PROGRESS-2025-01-16T02:01:22.772Z, - LogicalResourceId: InstanceRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-16T02:01:22.772000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: NLBSecurityGroup-CREATE_IN_PROGRESS-2025-01-16T02:01:22.735Z, - LogicalResourceId: NLBSecurityGroup, - ResourceType: AWS::EC2::SecurityGroup, - Timestamp: 2025-01-16T02:01:22.735000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: LambdaExecutionRole-CREATE_IN_PROGRESS-2025-01-16T02:01:22.704Z, - LogicalResourceId: LambdaExecutionRole, - ResourceType: AWS::IAM::Role, - Timestamp: 2025-01-16T02:01:22.704000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - - - EventId: c7353290-d3ad-11ef-9b8e-029867aeedc5, - LogicalResourceId: unity-management-console-unity-nightly, - ResourceType: AWS::CloudFormation::Stack, - Timestamp: 2025-01-16T02:01:19.783000+00:00, - ResourceStatus: CREATE_IN_PROGRESS, - ResourceStatusReason: User Initiated - % Total % Received % Xferd Average Speed Time Time Time Current - Dload Upload Total Spent Left Speed - 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 14589 100 11 100 14578 56 74377 --:--:-- --:--:-- --:--:-- 74433 -{"ok":true} \ No newline at end of file diff --git a/nightly_tests/nightly_logs/log_2025-01-16_18-00/nightly_output_2025-01-16_18-00.txt b/nightly_tests/nightly_logs/log_2025-01-16_18-00/nightly_output_2025-01-16_18-00.txt deleted file mode 100644 index 2384c63e..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-16_18-00/nightly_output_2025-01-16_18-00.txt +++ /dev/null @@ -1,138 +0,0 @@ -Repo Hash (Nightly Test): [a6e874b] -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -Nightly Test in the (TODO FIXME) account -Stack Name: [unity-management-console-unity-nightly] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [320 seconds] - PASS -Deploying Management Console... -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-8.3.2, pluggy-1.5.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests -collecting ... collected 4 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 25%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 50%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 75%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [100%] - -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://unity-nightly-httpd-alb-779346516.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing, but got: http://unity-nightly-httpd-alb-779346516.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -E assert 'http://unity...management/ui' == 'http://unity...nt/ui/landing' -E -E - http://unity-nightly-httpd-alb-779346516.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui/landing -E ? -------- -E + http://unity-nightly-httpd-alb-779346516.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5647aac2634a -E #1 0x5647aa73c6e0 -E #2 0x5647aa78b3e6 -E #3 0x5647aa78b681 -E #4 0x5647aa7d0b04 -E #5 0x5647aa7af48d -E #6 0x5647aa7cded7 -E #7 0x5647aa7af203 -E #8 0x5647aa77dcc0 -E #9 0x5647aa77ec9e -E #10 0x5647aabf3d3b -E #11 0x5647aabf7cc2 -E #12 0x5647aabe0b6c -E #13 0x5647aabf8837 -E #14 0x5647aabc610f -E #15 0x5647aac155a8 -E #16 0x5647aac15770 -E #17 0x5647aac251c6 -E #18 0x7f2493355a94 -E #19 0x7f24933e2a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5647aac2634a -E #1 0x5647aa73c6e0 -E #2 0x5647aa78b3e6 -E #3 0x5647aa78b681 -E #4 0x5647aa7d0b04 -E #5 0x5647aa7af48d -E #6 0x5647aa7cded7 -E #7 0x5647aa7af203 -E #8 0x5647aa77dcc0 -E #9 0x5647aa77ec9e -E #10 0x5647aabf3d3b -E #11 0x5647aabf7cc2 -E #12 0x5647aabe0b6c -E #13 0x5647aabf8837 -E #14 0x5647aabc610f -E #15 0x5647aac155a8 -E #16 0x5647aac15770 -E #17 0x5647aac251c6 -E #18 0x7f2493355a94 -E #19 0x7f24933e2a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:116: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:105: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5647aac2634a -E #1 0x5647aa73c6e0 -E #2 0x5647aa78b3e6 -E #3 0x5647aa78b681 -E #4 0x5647aa7d0b04 -E #5 0x5647aa7af48d -E #6 0x5647aa7cded7 -E #7 0x5647aa7af203 -E #8 0x5647aa77dcc0 -E #9 0x5647aa77ec9e -E #10 0x5647aabf3d3b -E #11 0x5647aabf7cc2 -E #12 0x5647aabe0b6c -E #13 0x5647aabf8837 -E #14 0x5647aabc610f -E #15 0x5647aac155a8 -E #16 0x5647aac15770 -E #17 0x5647aac251c6 -E #18 0x7f2493355a94 -E #19 0x7f24933e2a34 __clone - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:128: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -======================== 4 failed in 120.17s (0:02:00) ========================= diff --git a/nightly_tests/nightly_logs/log_2025-01-16_18-00/output.log b/nightly_tests/nightly_logs/log_2025-01-16_18-00/output.log deleted file mode 100644 index 985c74a7..00000000 --- a/nightly_tests/nightly_logs/log_2025-01-16_18-00/output.log +++ /dev/null @@ -1,437 +0,0 @@ -Checking for existing deployment for (project=unity, venue=nightly) ... -Existing deployment not found. Continuing with deployment... - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Hit:1 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal InRelease -Get:2 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates InRelease [128 kB] -Get:3 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-backports InRelease [128 kB] -Get:4 https://download.docker.com/linux/ubuntu focal InRelease [57.7 kB] -Get:5 https://apt.releases.hashicorp.com focal InRelease [12.9 kB] -Ign:6 https://apt.vector.dev stable InRelease -Hit:7 https://apt.vector.dev stable Release -Get:8 https://esm.ubuntu.com/apps/ubuntu focal-apps-security InRelease [7565 B] -Get:9 https://esm.ubuntu.com/apps/ubuntu focal-apps-updates InRelease [7456 B] -Get:10 https://esm.ubuntu.com/infra/ubuntu focal-infra-security InRelease [7450 B] -Get:11 https://esm.ubuntu.com/infra/ubuntu focal-infra-updates InRelease [7449 B] -Get:12 https://esm.ubuntu.com/fips/ubuntu focal InRelease [3887 B] -Get:13 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3744 kB] -Get:14 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1254 kB] -Get:15 http://us-west-2.ec2.archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [301 kB] -Get:16 https://download.docker.com/linux/ubuntu focal/stable amd64 Packages [54.3 kB] -Get:17 https://apt.releases.hashicorp.com focal/main amd64 Packages [165 kB] -Get:19 http://security.ubuntu.com/ubuntu focal-security InRelease [128 kB] -Get:20 https://esm.ubuntu.com/apps/ubuntu focal-apps-security/main amd64 Packages [165 kB] -Get:21 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [3366 kB] -Get:22 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [1031 kB] -Get:23 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [218 kB] -Fetched 10.8 MB in 19s (581 kB/s) -Reading package lists... -Building dependency tree... -Reading state information... -42 packages can be upgraded. Run 'apt list --upgradable' to see them. - -WARNING: apt does not have a stable CLI interface. Use with caution in scripts. - -Reading package lists... -Building dependency tree... -Reading state information... -python3-pip is already the newest version (20.0.2-5ubuntu1.11+esm2). -0 upgraded, 0 newly installed, 0 to remove and 42 not upgraded. -RUN ARGUMENTS: - - Destroy stack at end of script? true - - Run tests? true - - Project Name: unity - - Venue Name: nightly - - MC Version: latest - - Config File: marketplace_config.yaml ---------------------------------------------------------- -set_common_ssm_params.sh ... -Deleting SSM parameter: /unity/cs/account/management-console/instancetype ... -Creating SSM parameter : /unity/cs/account/management-console/instancetype = c6i.xlarge ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/cs/account/privilegedpolicyname ... -Creating SSM parameter : /unity/cs/account/privilegedpolicyname = mcp-tenantOperator-AMI-APIG ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/cs/github/username ... -{ - "Parameter": { - "Name": "/unity/cs/github/username", - "Type": "String", - "Value": "galenatjpl", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:17:02.563000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/username", - "DataType": "text" - } -} -SSM param /unity/cs/github/username exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/github/useremail ... -{ - "Parameter": { - "Name": "/unity/cs/github/useremail", - "Type": "String", - "Value": "ghollins@jpl.nasa.gov", - "Version": 1, - "LastModifiedDate": "2024-03-14T10:18:03.925000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/github/useremail", - "DataType": "text" - } -} -SSM param /unity/cs/github/useremail exists. Continuing... -populate_if_not_exists_ssm_param: /unity/cs/githubtoken ... -{ - "Parameter": { - "Name": "/unity/cs/githubtoken", - "Type": "SecureString", - "Value": "AQICAHjoj1gDEZHOs04UzTAKNJ+G5CMuH+mytDycb/B0YahuDQHUyYDWCkbsnGuaE15hLxaHAAAAhzCBhAYJKoZIhvcNAQcGoHcwdQIBADBwBgkqhkiG9w0BBwEwHgYJYIZIAWUDBAEuMBEEDPANGK+6n3hL2UKdjQIBEIBDd/luW52ufeIVh8yKXPMl3AiVaS8i4ngZOhpdEQq068MTl7qQX9g5TUNgCf90M4KSsJrtJw8s4oV6jq81Yjo9qZQATQ==", - "Version": 3, - "LastModifiedDate": "2024-07-15T09:52:44.328000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/cs/githubtoken", - "DataType": "text" - } -} -SSM param /unity/cs/githubtoken exists. Continuing... -populate_if_not_exists_ssm_param: /unity/ci/slack-web-hook-url ... -{ - "Parameter": { - "Name": "/unity/ci/slack-web-hook-url", - "Type": "String", - "Value": "https://hooks.slack.com/triggers/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", - "Version": 3, - "LastModifiedDate": "2024-07-17T11:21:59.742000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/ci/slack-web-hook-url", - "DataType": "text" - } -} -SSM param /unity/ci/slack-web-hook-url exists. Continuing... -Deleting SSM parameter: /unity/account/network/vpc_id ... -Creating SSM parameter : /unity/account/network/vpc_id = vpc-08eb1564c91214d03 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/subnet_list ... -Creating SSM parameter : /unity/account/network/subnet_list = { "public": ["subnet-0f0ccb6b8ac31519d", "subnet-0dec70bed8075feb3"], "private": ["subnet-01b0bbd950b0d1ac6", "subnet-098841c29a5041af9"] } ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet1 ... -Creating SSM parameter : /unity/account/network/publicsubnet1 = subnet-0f0ccb6b8ac31519d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/publicsubnet2 ... -Creating SSM parameter : /unity/account/network/publicsubnet2 = subnet-0dec70bed8075feb3 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet1 ... -Creating SSM parameter : /unity/account/network/privatesubnet1 = subnet-01b0bbd950b0d1ac6 ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/network/privatesubnet2 ... -Creating SSM parameter : /unity/account/network/privatesubnet2 = subnet-098841c29a5041af9 ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/account/network/certificate-arn ... -{ - "Parameter": { - "Name": "/unity/account/network/certificate-arn", - "Type": "String", - "Value": "foo", - "Version": 1, - "LastModifiedDate": "2024-09-03T10:39:19.764000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/account/network/certificate-arn", - "DataType": "text" - } -} -SSM param /unity/account/network/certificate-arn exists. Continuing... -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-29 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-29 = ami-0a3f2b3eda741dc3d ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/account/eks/amis/aml2-eks-1-30 ... -Creating SSM parameter : /unity/account/eks/amis/aml2-eks-1-30 = ami-0427d1155f94f846e ... -{ - "Version": 1, - "Tier": "Standard" -} -populate_if_not_exists_ssm_param: /unity/shared-services/aws/account ... -{ - "Parameter": { - "Name": "/unity/shared-services/aws/account", - "Type": "String", - "Value": "237868187491", - "Version": 3, - "LastModifiedDate": "2024-07-02T09:20:21.092000-07:00", - "ARN": "arn:aws:ssm:us-west-2:865428270474:parameter/unity/shared-services/aws/account", - "DataType": "text" - } -} -SSM param /unity/shared-services/aws/account exists. Continuing... -Deleting SSM parameter: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list ... -Creating SSM parameter : /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list = na ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/shared-services/aws/account/region ... -Creating SSM parameter : /unity/shared-services/aws/account/region = us-west-2 ... -{ - "Version": 1, - "Tier": "Standard" -} -Repo Hash (Nightly Test): [a6e874b] -From https://github.com/unity-sds/unity-cs-infra - * branch main -> FETCH_HEAD -Already up to date. -Already on 'main' -M nightly_tests/nightly_logs/log_2025-01-15_18-00/output.log -Your branch is up to date with 'origin/main'. -deploy.sh :: STACK_NAME: unity-management-console-unity-nightly -deploy.sh :: PROJECT_NAME: unity -deploy.sh :: VENUE_NAME: nightly -set_deployment_ssm_params.sh :: PROJECT_NAME: unity -set_deployment_ssm_params.sh :: VENUE_NAME: nightly -Deleting SSM parameter: /unity/unity/nightly/project-name ... -SSM param /unity/unity/nightly/project-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/project-name = unity ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/venue-name ... -SSM param /unity/unity/nightly/venue-name not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/venue-name = nightly ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/deployment/status ... -SSM param /unity/unity/nightly/deployment/status not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/deployment/status = deploying ... -{ - "Version": 1, - "Tier": "Standard" -} -Deleting SSM parameter: /unity/unity/nightly/cs/monitoring/s3/bucketName ... -SSM param /unity/unity/nightly/cs/monitoring/s3/bucketName not found. Not attempting a delete. -Creating SSM parameter : /unity/unity/nightly/cs/monitoring/s3/bucketName = unity-unity-nightly-bucket ... -{ - "Version": 1, - "Tier": "Standard" -} -deploying INSTANCE TYPE: c6i.xlarge ... -Deploying Cloudformation stack... ------------------------------------------ -Items that will auto-deploy on bootstrap: -Marketplace Item | Version ---------------------------------+-------- -unity-cs-monitoring-lambda | 0.1 -unity-apigateway | 0.4 -unity-proxy | 0.14 -unity-ui | 0.8.0 -{ - "StackId": "arn:aws:cloudformation:us-west-2:865428270474:stack/unity-management-console-unity-nightly/f8346ef0-d476-11ef-bed6-02de2780f755" -} -Stack Name: [unity-management-console-unity-nightly] -Waiting for Cloudformation Stack..........................................[0] -Waiting for Cloudformation Stack..........................................[20] -Waiting for Cloudformation Stack..........................................[40] -Waiting for Cloudformation Stack..........................................[60] -Waiting for Cloudformation Stack..........................................[80] -Waiting for Cloudformation Stack..........................................[100] -Waiting for Cloudformation Stack..........................................[120] -Waiting for Cloudformation Stack..........................................[140] -Waiting for Cloudformation Stack..........................................[160] -Waiting for Cloudformation Stack..........................................[180] -Waiting for Cloudformation Stack..........................................[200] -Waiting for Cloudformation Stack..........................................[220] -Waiting for Cloudformation Stack..........................................[240] -Waiting for Cloudformation Stack..........................................[260] -Waiting for Cloudformation Stack..........................................[280] -Waiting for Cloudformation Stack..........................................[300] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [320 seconds] - PASS -Deploying Management Console... -SSM Parameter Name: /unity/unity/nightly/management/httpd/loadbalancer-url -Management Console URL: HTTP://unity-nightly-httpd-alb-779346516.us-west-2.elb.amazonaws.com:8080/unity/nightly/management/ui -Updating Apache configuration in S3... -Environment from SSM: dev -Completed 13.8 KiB/13.8 KiB (231.9 KiB/s) with 1 file(s) remaining download: s3://ucs-shared-services-apache-config-dev/unity-cs.conf to ../../../../tmp/unity-cs.conf -Completed 14.8 KiB/14.8 KiB (145.1 KiB/s) with 1 file(s) remaining upload: ../../../../tmp/unity-cs.conf to s3://ucs-shared-services-apache-config-dev/unity-cs.conf -Successfully updated Apache configuration in S3 -Checking if Docker is installed... -Docker already installed [OK] -Using default tag: latest -latest: Pulling from selenium/standalone-chrome -de44b265507a: Already exists -2bd15bbb2a60: Pulling fs layer -9a128b13f9b1: Pulling fs layer -181410dbbb3c: Pulling fs layer -aee6dd6c6c6c: Pulling fs layer -da6d2e56f44d: Pulling fs layer -a21cc67e5ca6: Pulling fs layer -51609b3a85b2: Pulling fs layer -e57bde81af92: Pulling fs layer -062afa674fc9: Pulling fs layer -399fe729a9db: Pulling fs layer -d8733e6f38f7: Pulling fs layer -6169491657bb: Pulling fs layer -7379c61aae96: Pulling fs layer -9b3a8119f04b: Pulling fs layer -78c18c118ec2: Pulling fs layer -3358d973117c: Pulling fs layer -285d13ba8683: Pulling fs layer -2a9add3cb738: Pulling fs layer -c99eab470183: Pulling fs layer -75218cf63b7f: Pulling fs layer -97865d241f5d: Pulling fs layer -abee27bc388c: Pulling fs layer -a1a260078df9: Pulling fs layer -cf5f3c60b1b1: Pulling fs layer -dfdf3fefdca7: Pulling fs layer -2d4f1ad69dd8: Pulling fs layer -f82f91c08d9e: Pulling fs layer -e6efd76e34ad: Pulling fs layer -dde5bb742d09: Pulling fs layer -49395c82e0a3: Pulling fs layer -79d043091968: Pulling fs layer -14cc79df554e: Pulling fs layer -aee6dd6c6c6c: Waiting -da6d2e56f44d: Waiting -a21cc67e5ca6: Waiting -51609b3a85b2: Waiting -e57bde81af92: Waiting -062afa674fc9: Waiting -399fe729a9db: Waiting -d8733e6f38f7: Waiting -6169491657bb: Waiting -7379c61aae96: Waiting -9b3a8119f04b: Waiting -78c18c118ec2: Waiting -3358d973117c: Waiting -285d13ba8683: Waiting -2a9add3cb738: Waiting -c99eab470183: Waiting -75218cf63b7f: Waiting -97865d241f5d: Waiting -abee27bc388c: Waiting -a1a260078df9: Waiting -cf5f3c60b1b1: Waiting -dfdf3fefdca7: Waiting -2d4f1ad69dd8: Waiting -f82f91c08d9e: Waiting -e6efd76e34ad: Waiting -dde5bb742d09: Waiting -49395c82e0a3: Waiting -79d043091968: Waiting -14cc79df554e: Waiting -181410dbbb3c: Verifying Checksum -181410dbbb3c: Download complete -aee6dd6c6c6c: Verifying Checksum -aee6dd6c6c6c: Download complete -da6d2e56f44d: Verifying Checksum -da6d2e56f44d: Download complete -a21cc67e5ca6: Verifying Checksum -a21cc67e5ca6: Download complete -51609b3a85b2: Verifying Checksum -51609b3a85b2: Download complete -e57bde81af92: Verifying Checksum -e57bde81af92: Download complete -062afa674fc9: Verifying Checksum -062afa674fc9: Download complete -399fe729a9db: Verifying Checksum -399fe729a9db: Download complete -9a128b13f9b1: Verifying Checksum -9a128b13f9b1: Download complete -d8733e6f38f7: Verifying Checksum -d8733e6f38f7: Download complete -7379c61aae96: Verifying Checksum -7379c61aae96: Download complete -2bd15bbb2a60: Verifying Checksum -2bd15bbb2a60: Download complete -9b3a8119f04b: Verifying Checksum -9b3a8119f04b: Download complete -78c18c118ec2: Verifying Checksum -78c18c118ec2: Download complete -6169491657bb: Verifying Checksum -6169491657bb: Download complete -2a9add3cb738: Verifying Checksum -2a9add3cb738: Download complete -285d13ba8683: Verifying Checksum -285d13ba8683: Download complete -c99eab470183: Verifying Checksum -c99eab470183: Download complete -75218cf63b7f: Verifying Checksum -75218cf63b7f: Download complete -abee27bc388c: Verifying Checksum -abee27bc388c: Download complete -a1a260078df9: Verifying Checksum -a1a260078df9: Download complete -cf5f3c60b1b1: Verifying Checksum -cf5f3c60b1b1: Download complete -dfdf3fefdca7: Verifying Checksum -dfdf3fefdca7: Download complete -2d4f1ad69dd8: Verifying Checksum -2d4f1ad69dd8: Download complete -f82f91c08d9e: Verifying Checksum -f82f91c08d9e: Download complete -e6efd76e34ad: Verifying Checksum -e6efd76e34ad: Download complete -3358d973117c: Verifying Checksum -3358d973117c: Download complete -dde5bb742d09: Verifying Checksum -dde5bb742d09: Download complete -49395c82e0a3: Verifying Checksum -49395c82e0a3: Download complete -79d043091968: Verifying Checksum -79d043091968: Download complete -14cc79df554e: Verifying Checksum -14cc79df554e: Download complete -97865d241f5d: Verifying Checksum -97865d241f5d: Download complete -failed to register layer: write /usr/lib/python3/dist-packages/pkg_resources/_vendor/typing_extensions.py: no space left on device -Launching selenium docker... -Attempt 1 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 2 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 3 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 4 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 5 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 6 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 7 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 8 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 9 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 10 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 11 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 12 to reach Management Console via httpd -- Received HTTP response code 504. Retrying in 10 seconds... -Attempt 13 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Attempt 14 to reach Management Console via httpd -- Received HTTP response code 503. Retrying in 10 seconds... -Success! HTTP response code 200 received. -Management Console Creation Time: 1312 seconds -Total Creation Time(SMM params, CloudFormation, MC): 1735 seconds -Running Smoke Test -Smoke test was successful. Continuing with bootstrap and tests. -Running Selenium tests... -Stopping Selenium docker container... -123d2b7dcb372071a10ce1a1d689a4fe52cde7fb58b447d56e59a1078ec85d4a -mv: cannot stat 'selenium_unity_images/*': No such file or directory -Current date and time: Thu Jan 16 18:31:02 PST 2025 -Deleting directory: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_logs/log_2025-01-07_20-58 -Pushing test results to nightly_logs/log_2025-01-16_18-00... diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/delete_old_logs.sh b/nightly_tests/nightly_tests_ondemand/nightly_logs/delete_old_logs.sh deleted file mode 100755 index fb840823..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/delete_old_logs.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -# Directory containing the log directories -LOG_DIR="/home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand/nightly_logs" - -# Print current date and time -echo "Current date and time: $(date)" - -# Find and attempt to delete directories older than 2 weeks -find "$LOG_DIR" -mindepth 1 -maxdepth 1 -type d -mtime +14 -exec echo "Deleting directory: {}" \; -exec rm -r {} \; - diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-03/nightly_output_2024-02-03.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-03/nightly_output_2024-02-03.txt deleted file mode 100644 index 3f7e0991..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-03/nightly_output_2024-02-03.txt +++ /dev/null @@ -1,455 +0,0 @@ -Repo Hash (Nightly Test): [0f2615b] -Repo Hash (Cloudformation): [d7ba267] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Cloudformation Stack creation exceeded 2400 seconds - [FAIL] -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://Jcvjaj-unity-proxy-httpd-alb-886655342.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://jcvjaj-unity-proxy-httpd-alb-886655342.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://jcvja...management/ui' == 'http://jcvja...nt/ui/landing' -E - http://jcvjaj-unity-proxy-httpd-alb-886655342.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://jcvjaj-unity-proxy-httpd-alb-886655342.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x557e099baf83 -E #1 0x557e09673cf7 -E #2 0x557e096c399e -E #3 0x557e096c3aa1 -E #4 0x557e0970ed64 -E #5 0x557e096ed0dd -E #6 0x557e0970c006 -E #7 0x557e096ece53 -E #8 0x557e096b4dd4 -E #9 0x557e096b61de -E #10 0x557e0997f531 -E #11 0x557e09983455 -E #12 0x557e0996bf55 -E #13 0x557e099840ef -E #14 0x557e0994f99f -E #15 0x557e099a8008 -E #16 0x557e099a81d7 -E #17 0x557e099ba124 -E #18 0x7f211c02dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 307.51s (0:05:07) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index 8522bfce..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index 8522bfce..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 58634cef..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 9e503efd..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 7d9c4d80..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/nightly_output_2024-02-04.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/nightly_output_2024-02-04.txt deleted file mode 100644 index b88602c5..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-04/nightly_output_2024-02-04.txt +++ /dev/null @@ -1,54 +0,0 @@ -Repo Hash (Nightly Test): [40d57c4] -Repo Hash (Cloudformation): [d7ba267] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:86: in test_bootstrap_process_status - assert "The Bootstrap Process Failed" not in status_message, "Bootstrap process failed" -E AssertionError: Bootstrap process failed -E assert 'The Bootstr...ocess Failed' not in 'The Bootstr...eck The Logs' -E 'The Bootstrap Process Failed' is contained here: -E The Bootstrap Process Failed Please Check The Logs -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_bootstrap_process_status - AssertionError: B... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 3 failed, 11 passed in 39.91s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index 8522bfce..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index 8522bfce..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index de890fc9..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 9e503efd..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index a159d860..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/nightly_output_2024-02-05.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/nightly_output_2024-02-05.txt deleted file mode 100644 index e477f498..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-05/nightly_output_2024-02-05.txt +++ /dev/null @@ -1,456 +0,0 @@ -Repo Hash (Nightly Test): [1e02c38] -Repo Hash (Cloudformation): [be00114] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://QbtCwt-unity-proxy-httpd-alb-1235804107.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://qbtcwt-unity-proxy-httpd-alb-1235804107.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://qbtcw...management/ui' == 'http://qbtcw...nt/ui/landing' -E - http://qbtcwt-unity-proxy-httpd-alb-1235804107.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://qbtcwt-unity-proxy-httpd-alb-1235804107.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b179e84f83 -E #1 0x55b179b3dcf7 -E #2 0x55b179b8d99e -E #3 0x55b179b8daa1 -E #4 0x55b179bd8d64 -E #5 0x55b179bb70dd -E #6 0x55b179bd6006 -E #7 0x55b179bb6e53 -E #8 0x55b179b7edd4 -E #9 0x55b179b801de -E #10 0x55b179e49531 -E #11 0x55b179e4d455 -E #12 0x55b179e35f55 -E #13 0x55b179e4e0ef -E #14 0x55b179e1999f -E #15 0x55b179e72008 -E #16 0x55b179e721d7 -E #17 0x55b179e84124 -E #18 0x7f2970034ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 308.20s (0:05:08) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 1f45aa30..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 1d943957..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/nightly_output_2024-02-06.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/nightly_output_2024-02-06.txt deleted file mode 100644 index e4a1c1b3..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-06/nightly_output_2024-02-06.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [228eb5b] -Repo Hash (Cloudformation): [be00114] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [20 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 40.48s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 0e6c735a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index dc6f3446..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 1d943957..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/nightly_output_2024-02-07.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/nightly_output_2024-02-07.txt deleted file mode 100644 index 3fd514df..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-07/nightly_output_2024-02-07.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [7353f57] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [20 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 44.26s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_10-30/nightly_output_2024-02-08_10-30.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_10-30/nightly_output_2024-02-08_10-30.txt deleted file mode 100644 index e232ec23..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_10-30/nightly_output_2024-02-08_10-30.txt +++ /dev/null @@ -1,456 +0,0 @@ -Repo Hash (Nightly Test): [418d3d6] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [420 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://UxTOrf-unity-proxy-httpd-alb-1073689280.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://uxtorf-unity-proxy-httpd-alb-1073689280.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://uxtor...management/ui' == 'http://uxtor...nt/ui/landing' -E - http://uxtorf-unity-proxy-httpd-alb-1073689280.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://uxtorf-unity-proxy-httpd-alb-1073689280.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55b9bb7aaf83 -E #1 0x55b9bb463cf7 -E #2 0x55b9bb4b399e -E #3 0x55b9bb4b3aa1 -E #4 0x55b9bb4fed64 -E #5 0x55b9bb4dd0dd -E #6 0x55b9bb4fc006 -E #7 0x55b9bb4dce53 -E #8 0x55b9bb4a4dd4 -E #9 0x55b9bb4a61de -E #10 0x55b9bb76f531 -E #11 0x55b9bb773455 -E #12 0x55b9bb75bf55 -E #13 0x55b9bb7740ef -E #14 0x55b9bb73f99f -E #15 0x55b9bb798008 -E #16 0x55b9bb7981d7 -E #17 0x55b9bb7aa124 -E #18 0x7f28f647fac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 183.75s (0:03:03) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_11-16/nightly_output_2024-02-08_11-16.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_11-16/nightly_output_2024-02-08_11-16.txt deleted file mode 100644 index 822c8427..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_11-16/nightly_output_2024-02-08_11-16.txt +++ /dev/null @@ -1,456 +0,0 @@ -Repo Hash (Nightly Test): [bd719be] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [480 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://McraNm-unity-proxy-httpd-alb-770956173.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://mcranm-unity-proxy-httpd-alb-770956173.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://mcran...management/ui' == 'http://mcran...nt/ui/landing' -E - http://mcranm-unity-proxy-httpd-alb-770956173.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://mcranm-unity-proxy-httpd-alb-770956173.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5613b6c66f83 -E #1 0x5613b691fcf7 -E #2 0x5613b696f99e -E #3 0x5613b696faa1 -E #4 0x5613b69bad64 -E #5 0x5613b69990dd -E #6 0x5613b69b8006 -E #7 0x5613b6998e53 -E #8 0x5613b6960dd4 -E #9 0x5613b69621de -E #10 0x5613b6c2b531 -E #11 0x5613b6c2f455 -E #12 0x5613b6c17f55 -E #13 0x5613b6c300ef -E #14 0x5613b6bfb99f -E #15 0x5613b6c54008 -E #16 0x5613b6c541d7 -E #17 0x5613b6c66124 -E #18 0x7fe459683ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 182.34s (0:03:02) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_12-00/nightly_output_2024-02-08_12-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_12-00/nightly_output_2024-02-08_12-00.txt deleted file mode 100644 index ee12fef9..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_12-00/nightly_output_2024-02-08_12-00.txt +++ /dev/null @@ -1,456 +0,0 @@ -Repo Hash (Nightly Test): [fb95984] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://LAwbhp-unity-proxy-httpd-alb-116771615.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://lawbhp-unity-proxy-httpd-alb-116771615.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://lawbh...management/ui' == 'http://lawbh...nt/ui/landing' -E - http://lawbhp-unity-proxy-httpd-alb-116771615.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://lawbhp-unity-proxy-httpd-alb-116771615.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5631d3bf2f83 -E #1 0x5631d38abcf7 -E #2 0x5631d38fb99e -E #3 0x5631d38fbaa1 -E #4 0x5631d3946d64 -E #5 0x5631d39250dd -E #6 0x5631d3944006 -E #7 0x5631d3924e53 -E #8 0x5631d38ecdd4 -E #9 0x5631d38ee1de -E #10 0x5631d3bb7531 -E #11 0x5631d3bbb455 -E #12 0x5631d3ba3f55 -E #13 0x5631d3bbc0ef -E #14 0x5631d3b8799f -E #15 0x5631d3be0008 -E #16 0x5631d3be01d7 -E #17 0x5631d3bf2124 -E #18 0x7f5037710ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 182.84s (0:03:02) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_13-05/nightly_output_2024-02-08_13-05.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_13-05/nightly_output_2024-02-08_13-05.txt deleted file mode 100644 index cf2a2cd4..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_13-05/nightly_output_2024-02-08_13-05.txt +++ /dev/null @@ -1,456 +0,0 @@ -Repo Hash (Nightly Test): [fbd2c08] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [420 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://iExKvC-unity-proxy-httpd-alb-507001857.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://iexkvc-unity-proxy-httpd-alb-507001857.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://iexkv...management/ui' == 'http://iexkv...nt/ui/landing' -E - http://iexkvc-unity-proxy-httpd-alb-507001857.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://iexkvc-unity-proxy-httpd-alb-507001857.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x562c555baf83 -E #1 0x562c55273cf7 -E #2 0x562c552c399e -E #3 0x562c552c3aa1 -E #4 0x562c5530ed64 -E #5 0x562c552ed0dd -E #6 0x562c5530c006 -E #7 0x562c552ece53 -E #8 0x562c552b4dd4 -E #9 0x562c552b61de -E #10 0x562c5557f531 -E #11 0x562c55583455 -E #12 0x562c5556bf55 -E #13 0x562c555840ef -E #14 0x562c5554f99f -E #15 0x562c555a8008 -E #16 0x562c555a81d7 -E #17 0x562c555ba124 -E #18 0x7f29a49daac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 186.73s (0:03:06) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 4955ec8f..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 1223762d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/06_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/06_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index c86dfc94..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/06_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/nightly_output_2024-02-08_14-40.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/nightly_output_2024-02-08_14-40.txt deleted file mode 100644 index 864e10fd..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_14-40/nightly_output_2024-02-08_14-40.txt +++ /dev/null @@ -1,350 +0,0 @@ -Repo Hash (Nightly Test): [410536e] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn FAILED [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn FAILED [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -__________________________ test_click_install_EKS_btn __________________________ -test_selenium_mc.py:152: in test_click_install_EKS_btn - install_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:161: in test_click_install_EKS_btn - raise Exception("Failed to install EKS - either the button was not clickable or the URL did not update as expected.") -E Exception: Failed to install EKS - either the button was not clickable or the URL did not update as expected. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -__________________________ test_click_install_SPS_btn __________________________ -test_selenium_mc.py:270: in test_click_install_SPS_btn - install_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:279: in test_click_install_SPS_btn - raise Exception("Failed to install EKS - either the button was not clickable or the URL did not update as expected.") -E Exception: Failed to install EKS - either the button was not clickable or the URL did not update as expected. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55f6f1229f83 -E #1 0x55f6f0ee2cf7 -E #2 0x55f6f0f3299e -E #3 0x55f6f0f32aa1 -E #4 0x55f6f0f7dd64 -E #5 0x55f6f0f5c0dd -E #6 0x55f6f0f7b006 -E #7 0x55f6f0f5be53 -E #8 0x55f6f0f23dd4 -E #9 0x55f6f0f251de -E #10 0x55f6f11ee531 -E #11 0x55f6f11f2455 -E #12 0x55f6f11daf55 -E #13 0x55f6f11f30ef -E #14 0x55f6f11be99f -E #15 0x55f6f1217008 -E #16 0x55f6f12171d7 -E #17 0x55f6f1229124 -E #18 0x7f40dcb88ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -=================== 10 failed, 4 passed in 125.18s (0:02:05) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 4955ec8f..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 1d943957..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/nightly_output_2024-02-08_15-51.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/nightly_output_2024-02-08_15-51.txt deleted file mode 100644 index c1bbe600..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_15-51/nightly_output_2024-02-08_15-51.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [12b4dd7] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 37.35s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 7b766bb5..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index e5ea0da8..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/nightly_output_2024-02-08_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/nightly_output_2024-02-08_18-00.txt deleted file mode 100644 index b467c009..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-08_18-00/nightly_output_2024-02-08_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [972cafc] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [440 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 41.38s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 9d36b491..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 14ed010a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/nightly_output_2024-02-09_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/nightly_output_2024-02-09_18-00.txt deleted file mode 100644 index 89c0bf04..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-09_18-00/nightly_output_2024-02-09_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [c98f5bf] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 37.63s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 63b3f97d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index dc6f3446..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/nightly_output_2024-02-10_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/nightly_output_2024-02-10_18-00.txt deleted file mode 100644 index 7c373764..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-10_18-00/nightly_output_2024-02-10_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [2c8fa52] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 39.57s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index cf7e4360..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index dc6f3446..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/nightly_output_2024-02-11_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/nightly_output_2024-02-11_18-00.txt deleted file mode 100644 index 3f58a2f0..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-11_18-00/nightly_output_2024-02-11_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [ae4ee51] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 37.98s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 7e83df8d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 5932e722..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/nightly_output_2024-02-12_10-45.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/nightly_output_2024-02-12_10-45.txt deleted file mode 100644 index 4bd4cdd7..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_10-45/nightly_output_2024-02-12_10-45.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [638471d] -Repo Hash (Cloudformation): [20bfb2a] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 36.87s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 31456dbb..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 14ed010a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 14ed010a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/nightly_output_2024-02-12_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/nightly_output_2024-02-12_18-00.txt deleted file mode 100644 index 74beedf5..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-12_18-00/nightly_output_2024-02-12_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [6c129a2] -Repo Hash (Cloudformation): [5694946] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 39.27s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index c114333b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index dc6f3446..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/nightly_output_2024-02-13_13-52.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/nightly_output_2024-02-13_13-52.txt deleted file mode 100644 index 9aae8c45..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_13-52/nightly_output_2024-02-13_13-52.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [f2c6897] -Repo Hash (Cloudformation): [5694946] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 38.46s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index c38f33d2..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index e5ea0da8..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 14ed010a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/nightly_output_2024-02-13_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/nightly_output_2024-02-13_18-00.txt deleted file mode 100644 index 67cda41e..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-13_18-00/nightly_output_2024-02-13_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [6161962] -Repo Hash (Cloudformation): [5694946] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 38.73s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 4955ec8f..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index dc6f3446..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/nightly_output_2024-02-14_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/nightly_output_2024-02-14_18-00.txt deleted file mode 100644 index ee9cca61..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-14_18-00/nightly_output_2024-02-14_18-00.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [80a13b8] -Repo Hash (Cloudformation): [5694946] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [420 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 36.85s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index ca8c579c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 29992c0c..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 38952a7b..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/06_screenshot_after_clicking_EKS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/06_screenshot_after_clicking_EKS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/06_screenshot_after_clicking_EKS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/07_screenshot_after_setting_module_name.png deleted file mode 100644 index e7aa39f1..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/09_screenshot_after_clicking_buttons.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/09_screenshot_after_clicking_buttons.png deleted file mode 100644 index 01b25a17..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/09_screenshot_after_clicking_buttons.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/10_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/10_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 14ed010a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/10_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/11_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/11_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 84ffe964..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/11_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/12_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/12_screenshot_after_setting_module_name.png deleted file mode 100644 index ead673db..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/12_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/13_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/13_screenshot_after_setting_branch_name.png deleted file mode 100644 index 00447c41..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/13_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/14_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/14_screenshot_after_clicking_first_button.png deleted file mode 100644 index dfc1481d..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/14_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/nightly_output_2024-02-15_13-39.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/nightly_output_2024-02-15_13-39.txt deleted file mode 100644 index 6d7f6f6e..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_13-39/nightly_output_2024-02-15_13-39.txt +++ /dev/null @@ -1,46 +0,0 @@ -Repo Hash (Nightly Test): [d2b4cad] -Repo Hash (Cloudformation): [756c8fc] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn PASSED [ 35%] -test_selenium_mc.py::test_EKS_module_name PASSED [ 42%] -test_selenium_mc.py::test_EKS_module_branch PASSED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns PASSED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -=================================== FAILURES =================================== -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:263: in test_grab_terminal_output_EKS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\n[error]\n\n\n[error]\n[error]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\n[ERROR]\n\n\n[ERROR]\n[ERROR]\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - AssertionError: S... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -======================== 2 failed, 12 passed in 39.90s ========================= diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_18-00/nightly_output_2024-02-15_18-00.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_18-00/nightly_output_2024-02-15_18-00.txt deleted file mode 100644 index 0ac21aa2..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-15_18-00/nightly_output_2024-02-15_18-00.txt +++ /dev/null @@ -1,455 +0,0 @@ -Repo Hash (Nightly Test): [86d5d40] -Repo Hash (Cloudformation): [bb5c3e1] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Cloudformation Stack creation exceeded 2400 seconds - [FAIL] -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:59: in test_navigate_to_mc_console - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" -E AssertionError: URL does not match the expected URL without credentials. Expected: HTTP://CsiAAl-unity-proxy-httpd-alb-2091144322.us-west-2.elb.amazonaws.com:8080/management/ui/landing, but got: http://csiaal-unity-proxy-httpd-alb-2091144322.us-west-2.elb.amazonaws.com:8080/management/ui -E assert 'http://csiaa...management/ui' == 'http://csiaa...nt/ui/landing' -E - http://csiaal-unity-proxy-httpd-alb-2091144322.us-west-2.elb.amazonaws.com:8080/management/ui/landing -E ? -------- -E + http://csiaal-unity-proxy-httpd-alb-2091144322.us-west-2.elb.amazonaws.com:8080/management/ui -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x555909bc2f83 -E #1 0x55590987bcf7 -E #2 0x5559098cb99e -E #3 0x5559098cbaa1 -E #4 0x555909916d64 -E #5 0x5559098f50dd -E #6 0x555909914006 -E #7 0x5559098f4e53 -E #8 0x5559098bcdd4 -E #9 0x5559098be1de -E #10 0x555909b87531 -E #11 0x555909b8b455 -E #12 0x555909b73f55 -E #13 0x555909b8c0ef -E #14 0x555909b5799f -E #15 0x555909bb0008 -E #16 0x555909bb01d7 -E #17 0x555909bc2124 -E #18 0x7fac45351ac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - AssertionError: URL... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - Exception: Failed to ... -=================== 12 failed, 2 errors in 307.37s (0:05:07) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_10-40/nightly_output_2024-02-20_10-40.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_10-40/nightly_output_2024-02-20_10-40.txt deleted file mode 100644 index 0eb14726..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_10-40/nightly_output_2024-02-20_10-40.txt +++ /dev/null @@ -1,500 +0,0 @@ -Repo Hash (Nightly Test): [19499c2] -Repo Hash (Cloudformation): [5694946] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [400 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:128: in test_navigate_to_marketplace - driver.get(url_without_cred) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:356: in get - self.execute(Command.GET, {"url": url}) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute - self.error_handler.check_response(response) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.WebDriverException: Message: unknown error: net::ERR_NAME_NOT_RESOLVED -E (Session info: chrome=120.0.6099.224) -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da0a6ea -E #3 0x55696d9f95a1 -E #4 0x55696d9fad40 -E #5 0x55696d9f9854 -E #6 0x55696d9f8586 -E #7 0x55696d9f844a -E #8 0x55696d9f67e1 -E #9 0x55696d9f701a -E #10 0x55696da15bbe -E #11 0x55696daab7a5 -E #12 0x55696da8c0b2 -E #13 0x55696daab006 -E #14 0x55696da8be53 -E #15 0x55696da53dd4 -E #16 0x55696da551de -E #17 0x55696dd1e531 -E #18 0x55696dd22455 -E #19 0x55696dd0af55 -E #20 0x55696dd230ef -E #21 0x55696dcee99f -E #22 0x55696dd47008 -E #23 0x55696dd471d7 -E #24 0x55696dd59124 -E #25 0x7f8cc4c6aac3 -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:128: in test_navigate_to_marketplace - driver.get(url_without_cred) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:356: in get - self.execute(Command.GET, {"url": url}) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute - self.error_handler.check_response(response) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.WebDriverException: Message: unknown error: net::ERR_NAME_NOT_RESOLVED -E (Session info: chrome=120.0.6099.224) -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da0a6ea -E #3 0x55696d9f95a1 -E #4 0x55696d9fad40 -E #5 0x55696d9f9854 -E #6 0x55696d9f8586 -E #7 0x55696d9f844a -E #8 0x55696d9f67e1 -E #9 0x55696d9f701a -E #10 0x55696da15bbe -E #11 0x55696daab7a5 -E #12 0x55696da8c0b2 -E #13 0x55696daab006 -E #14 0x55696da8be53 -E #15 0x55696da53dd4 -E #16 0x55696da551de -E #17 0x55696dd1e531 -E #18 0x55696dd22455 -E #19 0x55696dd0af55 -E #20 0x55696dd230ef -E #21 0x55696dcee99f -E #22 0x55696dd47008 -E #23 0x55696dd471d7 -E #24 0x55696dd59124 -E #25 0x7f8cc4c6aac3 -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:56: in test_navigate_to_mc_console - driver.get(URL_WITHOUT_CRED) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:356: in get - self.execute(Command.GET, {"url": url}) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute - self.error_handler.check_response(response) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.WebDriverException: Message: unknown error: net::ERR_NAME_NOT_RESOLVED -E (Session info: chrome=120.0.6099.224) -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da0a6ea -E #3 0x55696d9f95a1 -E #4 0x55696d9fad40 -E #5 0x55696d9f9854 -E #6 0x55696d9f8586 -E #7 0x55696d9f844a -E #8 0x55696d9f67e1 -E #9 0x55696d9f701a -E #10 0x55696da15bbe -E #11 0x55696daab7a5 -E #12 0x55696da8c0b2 -E #13 0x55696daab006 -E #14 0x55696da8be53 -E #15 0x55696da53dd4 -E #16 0x55696da551de -E #17 0x55696dd1e531 -E #18 0x55696dd22455 -E #19 0x55696dd0af55 -E #20 0x55696dd230ef -E #21 0x55696dcee99f -E #22 0x55696dd47008 -E #23 0x55696dd471d7 -E #24 0x55696dd59124 -E #25 0x7f8cc4c6aac3 -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x55696dd59f83 -E #1 0x55696da12cf7 -E #2 0x55696da6299e -E #3 0x55696da62aa1 -E #4 0x55696daadd64 -E #5 0x55696da8c0dd -E #6 0x55696daab006 -E #7 0x55696da8be53 -E #8 0x55696da53dd4 -E #9 0x55696da551de -E #10 0x55696dd1e531 -E #11 0x55696dd22455 -E #12 0x55696dd0af55 -E #13 0x55696dd230ef -E #14 0x55696dcee99f -E #15 0x55696dd47008 -E #16 0x55696dd471d7 -E #17 0x55696dd59124 -E #18 0x7f8cc4c6aac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - selenium.common.exc... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - selenium.common.excep... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - selenium.common.excep... -=================== 12 failed, 2 errors in 133.23s (0:02:13) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_11-31/nightly_output_2024-02-20_11-31.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_11-31/nightly_output_2024-02-20_11-31.txt deleted file mode 100644 index c2e9a19c..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_11-31/nightly_output_2024-02-20_11-31.txt +++ /dev/null @@ -1,500 +0,0 @@ -Repo Hash (Nightly Test): [273d8d2] -Repo Hash (Cloudformation): [468671d] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [380 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console FAILED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status FAILED [ 14%] -test_selenium_mc.py::test_initiate_core_setup FAILED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn FAILED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn ERROR [ 71%] -test_selenium_mc.py::test_SPS_module_name FAILED [ 78%] -test_selenium_mc.py::test_SPS_module_branch FAILED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns FAILED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:128: in test_navigate_to_marketplace - driver.get(url_without_cred) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:356: in get - self.execute(Command.GET, {"url": url}) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute - self.error_handler.check_response(response) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.WebDriverException: Message: unknown error: net::ERR_NAME_NOT_RESOLVED -E (Session info: chrome=120.0.6099.224) -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d011c6ea -E #3 0x5650d010b5a1 -E #4 0x5650d010cd40 -E #5 0x5650d010b854 -E #6 0x5650d010a586 -E #7 0x5650d010a44a -E #8 0x5650d01087e1 -E #9 0x5650d010901a -E #10 0x5650d0127bbe -E #11 0x5650d01bd7a5 -E #12 0x5650d019e0b2 -E #13 0x5650d01bd006 -E #14 0x5650d019de53 -E #15 0x5650d0165dd4 -E #16 0x5650d01671de -E #17 0x5650d0430531 -E #18 0x5650d0434455 -E #19 0x5650d041cf55 -E #20 0x5650d04350ef -E #21 0x5650d040099f -E #22 0x5650d0459008 -E #23 0x5650d04591d7 -E #24 0x5650d046b124 -E #25 0x7f68cc7afac3 -_________________ ERROR at setup of test_click_install_SPS_btn _________________ -test_selenium_mc.py:128: in test_navigate_to_marketplace - driver.get(url_without_cred) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:356: in get - self.execute(Command.GET, {"url": url}) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute - self.error_handler.check_response(response) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.WebDriverException: Message: unknown error: net::ERR_NAME_NOT_RESOLVED -E (Session info: chrome=120.0.6099.224) -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d011c6ea -E #3 0x5650d010b5a1 -E #4 0x5650d010cd40 -E #5 0x5650d010b854 -E #6 0x5650d010a586 -E #7 0x5650d010a44a -E #8 0x5650d01087e1 -E #9 0x5650d010901a -E #10 0x5650d0127bbe -E #11 0x5650d01bd7a5 -E #12 0x5650d019e0b2 -E #13 0x5650d01bd006 -E #14 0x5650d019de53 -E #15 0x5650d0165dd4 -E #16 0x5650d01671de -E #17 0x5650d0430531 -E #18 0x5650d0434455 -E #19 0x5650d041cf55 -E #20 0x5650d04350ef -E #21 0x5650d040099f -E #22 0x5650d0459008 -E #23 0x5650d04591d7 -E #24 0x5650d046b124 -E #25 0x7f68cc7afac3 -=================================== FAILURES =================================== -_________________________ test_navigate_to_mc_console __________________________ -test_selenium_mc.py:56: in test_navigate_to_mc_console - driver.get(URL_WITHOUT_CRED) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:356: in get - self.execute(Command.GET, {"url": url}) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/webdriver.py:347: in execute - self.error_handler.check_response(response) -../../../.local/lib/python3.8/site-packages/selenium/webdriver/remote/errorhandler.py:229: in check_response - raise exception_class(message, screen, stacktrace) -E selenium.common.exceptions.WebDriverException: Message: unknown error: net::ERR_NAME_NOT_RESOLVED -E (Session info: chrome=120.0.6099.224) -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d011c6ea -E #3 0x5650d010b5a1 -E #4 0x5650d010cd40 -E #5 0x5650d010b854 -E #6 0x5650d010a586 -E #7 0x5650d010a44a -E #8 0x5650d01087e1 -E #9 0x5650d010901a -E #10 0x5650d0127bbe -E #11 0x5650d01bd7a5 -E #12 0x5650d019e0b2 -E #13 0x5650d01bd006 -E #14 0x5650d019de53 -E #15 0x5650d0165dd4 -E #16 0x5650d01671de -E #17 0x5650d0430531 -E #18 0x5650d0434455 -E #19 0x5650d041cf55 -E #20 0x5650d04350ef -E #21 0x5650d040099f -E #22 0x5650d0459008 -E #23 0x5650d04591d7 -E #24 0x5650d046b124 -E #25 0x7f68cc7afac3 -________________________ test_bootstrap_process_status _________________________ -test_selenium_mc.py:77: in test_bootstrap_process_status - bootstrap_status_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:89: in test_bootstrap_process_status - raise Exception("Failed to find the bootstrap status message within the specified time.") -E Exception: Failed to find the bootstrap status message within the specified time. -___________________________ test_initiate_core_setup ___________________________ -test_selenium_mc.py:95: in test_initiate_core_setup - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:104: in test_initiate_core_setup - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected. -___________________________ test_core_setup_save_btn ___________________________ -test_selenium_mc.py:115: in test_core_setup_save_btn - save_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:123: in test_core_setup_save_btn - raise Exception("Failed to find or click the core 'Save' button within the specified time.") -E Exception: Failed to find or click the core 'Save' button within the specified time. -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -_____________________________ test_SPS_module_name _____________________________ -test_selenium_mc.py:292: in test_SPS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:301: in test_SPS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_SPS_module_branch ____________________________ -test_selenium_mc.py:313: in test_SPS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:326: in test_SPS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_SPS_install_btns __________________________ -test_selenium_mc.py:337: in test_click_SPS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:358: in test_click_SPS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:370: in test_grab_terminal_output_SPS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5650d046bf83 -E #1 0x5650d0124cf7 -E #2 0x5650d017499e -E #3 0x5650d0174aa1 -E #4 0x5650d01bfd64 -E #5 0x5650d019e0dd -E #6 0x5650d01bd006 -E #7 0x5650d019de53 -E #8 0x5650d0165dd4 -E #9 0x5650d01671de -E #10 0x5650d0430531 -E #11 0x5650d0434455 -E #12 0x5650d041cf55 -E #13 0x5650d04350ef -E #14 0x5650d040099f -E #15 0x5650d0459008 -E #16 0x5650d04591d7 -E #17 0x5650d046b124 -E #18 0x7f68cc7afac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:374: in test_grab_terminal_output_SPS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_navigate_to_mc_console - selenium.common.exc... -FAILED test_selenium_mc.py::test_bootstrap_process_status - Exception: Failed... -FAILED test_selenium_mc.py::test_initiate_core_setup - Exception: Failed to n... -FAILED test_selenium_mc.py::test_core_setup_save_btn - Exception: Failed to f... -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_SPS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_SPS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_SPS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - Exception: Failed... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - selenium.common.excep... -ERROR test_selenium_mc.py::test_click_install_SPS_btn - selenium.common.excep... -=================== 12 failed, 2 errors in 133.43s (0:02:13) =================== diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/01_screenshot_after_navigating_to_URL.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/01_screenshot_after_navigating_to_URL.png deleted file mode 100644 index 929068c5..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/01_screenshot_after_navigating_to_URL.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/02_screenshot_after_bootstrap_check.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/02_screenshot_after_bootstrap_check.png deleted file mode 100644 index 929068c5..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/02_screenshot_after_bootstrap_check.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/03_screenshot_after_clicking_core_manegement_setup.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/03_screenshot_after_clicking_core_manegement_setup.png deleted file mode 100644 index 852bf3be..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/03_screenshot_after_clicking_core_manegement_setup.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/04_screenshot_after_clicking_core_manegement_save_btn.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/04_screenshot_after_clicking_core_manegement_save_btn.png deleted file mode 100644 index f29d2ffc..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/04_screenshot_after_clicking_core_manegement_save_btn.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/05_screenshot_after_navigating_to_marketplace.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/05_screenshot_after_navigating_to_marketplace.png deleted file mode 100644 index 9b5dc63a..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/05_screenshot_after_navigating_to_marketplace.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/06_screenshot_after_clicking_SPS_install_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/06_screenshot_after_clicking_SPS_install_button.png deleted file mode 100644 index 71d8dc49..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/06_screenshot_after_clicking_SPS_install_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/07_screenshot_after_setting_module_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/07_screenshot_after_setting_module_name.png deleted file mode 100644 index 4f844d07..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/07_screenshot_after_setting_module_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/08_screenshot_after_setting_branch_name.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/08_screenshot_after_setting_branch_name.png deleted file mode 100644 index b44976bf..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/08_screenshot_after_setting_branch_name.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/09_screenshot_after_clicking_first_button.png b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/09_screenshot_after_clicking_first_button.png deleted file mode 100644 index 20b0a430..00000000 Binary files a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/09_screenshot_after_clicking_first_button.png and /dev/null differ diff --git a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/nightly_output_2024-02-20_12-55.txt b/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/nightly_output_2024-02-20_12-55.txt deleted file mode 100644 index 3c4e606e..00000000 --- a/nightly_tests/nightly_tests_ondemand/nightly_logs/log_2024-02-20_12-55/nightly_output_2024-02-20_12-55.txt +++ /dev/null @@ -1,199 +0,0 @@ -Repo Hash (Nightly Test): [7b9c268] -Repo Hash (Cloudformation): [468671d] -Nightly Test in the unity-cm account -Stack Name: [unity-cs-nightly-management-console] -Stack Status (Final): [CREATE_COMPLETE] -Stack Creation Time: [380 seconds] - PASS -============================= test session starts ============================== -platform linux -- Python 3.8.10, pytest-7.4.3, pluggy-1.3.0 -- /usr/bin/python3 -cachedir: .pytest_cache -rootdir: /home/ubuntu/unity-cs-infra/nightly_tests/nightly_tests_ondemand -collecting ... collected 14 items - -test_selenium_mc.py::test_navigate_to_mc_console PASSED [ 7%] -test_selenium_mc.py::test_bootstrap_process_status PASSED [ 14%] -test_selenium_mc.py::test_initiate_core_setup PASSED [ 21%] -test_selenium_mc.py::test_core_setup_save_btn PASSED [ 28%] -test_selenium_mc.py::test_click_install_EKS_btn ERROR [ 35%] -test_selenium_mc.py::test_EKS_module_name FAILED [ 42%] -test_selenium_mc.py::test_EKS_module_branch FAILED [ 50%] -test_selenium_mc.py::test_click_EKS_install_btns FAILED [ 57%] -test_selenium_mc.py::test_grab_terminal_output_EKS FAILED [ 64%] -test_selenium_mc.py::test_click_install_SPS_btn PASSED [ 71%] -test_selenium_mc.py::test_SPS_module_name PASSED [ 78%] -test_selenium_mc.py::test_SPS_module_branch PASSED [ 85%] -test_selenium_mc.py::test_click_SPS_install_btns PASSED [ 92%] -test_selenium_mc.py::test_grab_terminal_output_SPS FAILED [100%] - -==================================== ERRORS ==================================== -_________________ ERROR at setup of test_click_install_EKS_btn _________________ -test_selenium_mc.py:133: in test_navigate_to_marketplace - go_button = WebDriverWait(driver, 20).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5567e7e80f83 -E #1 0x5567e7b39cf7 -E #2 0x5567e7b8999e -E #3 0x5567e7b89aa1 -E #4 0x5567e7bd4d64 -E #5 0x5567e7bb30dd -E #6 0x5567e7bd2006 -E #7 0x5567e7bb2e53 -E #8 0x5567e7b7add4 -E #9 0x5567e7b7c1de -E #10 0x5567e7e45531 -E #11 0x5567e7e49455 -E #12 0x5567e7e31f55 -E #13 0x5567e7e4a0ef -E #14 0x5567e7e1599f -E #15 0x5567e7e6e008 -E #16 0x5567e7e6e1d7 -E #17 0x5567e7e80124 -E #18 0x7f3721f2dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:142: in test_navigate_to_marketplace - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") -E Exception: Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected. -=================================== FAILURES =================================== -_____________________________ test_EKS_module_name _____________________________ -test_selenium_mc.py:174: in test_EKS_module_name - text_box = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5567e7e80f83 -E #1 0x5567e7b39cf7 -E #2 0x5567e7b8999e -E #3 0x5567e7b89aa1 -E #4 0x5567e7bd4d64 -E #5 0x5567e7bb30dd -E #6 0x5567e7bd2006 -E #7 0x5567e7bb2e53 -E #8 0x5567e7b7add4 -E #9 0x5567e7b7c1de -E #10 0x5567e7e45531 -E #11 0x5567e7e49455 -E #12 0x5567e7e31f55 -E #13 0x5567e7e4a0ef -E #14 0x5567e7e1599f -E #15 0x5567e7e6e008 -E #16 0x5567e7e6e1d7 -E #17 0x5567e7e80124 -E #18 0x7f3721f2dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:183: in test_EKS_module_name - raise Exception(f"Failed to find or interact with the specified element (ID: {element_id}).") -E Exception: Failed to find or interact with the specified element (ID: name). -____________________________ test_EKS_module_branch ____________________________ -test_selenium_mc.py:195: in test_EKS_module_branch - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5567e7e80f83 -E #1 0x5567e7b39cf7 -E #2 0x5567e7b8999e -E #3 0x5567e7b89aa1 -E #4 0x5567e7bd4d64 -E #5 0x5567e7bb30dd -E #6 0x5567e7bd2006 -E #7 0x5567e7bb2e53 -E #8 0x5567e7b7add4 -E #9 0x5567e7b7c1de -E #10 0x5567e7e45531 -E #11 0x5567e7e49455 -E #12 0x5567e7e31f55 -E #13 0x5567e7e4a0ef -E #14 0x5567e7e1599f -E #15 0x5567e7e6e008 -E #16 0x5567e7e6e1d7 -E #17 0x5567e7e80124 -E #18 0x7f3721f2dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:208: in test_EKS_module_branch - raise Exception(f"Textbox for branch name (ID: {element_id}) not found.") -E Exception: Textbox for branch name (ID: branch) not found. -_________________________ test_click_EKS_install_btns __________________________ -test_selenium_mc.py:219: in test_click_EKS_install_btns - next_button = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5567e7e80f83 -E #1 0x5567e7b39cf7 -E #2 0x5567e7b8999e -E #3 0x5567e7b89aa1 -E #4 0x5567e7bd4d64 -E #5 0x5567e7bb30dd -E #6 0x5567e7bd2006 -E #7 0x5567e7bb2e53 -E #8 0x5567e7b7add4 -E #9 0x5567e7b7c1de -E #10 0x5567e7e45531 -E #11 0x5567e7e49455 -E #12 0x5567e7e31f55 -E #13 0x5567e7e4a0ef -E #14 0x5567e7e1599f -E #15 0x5567e7e6e008 -E #16 0x5567e7e6e1d7 -E #17 0x5567e7e80124 -E #18 0x7f3721f2dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:240: in test_click_EKS_install_btns - raise Exception(f"Failed to find or click the first button (class: {next_button_class}).") -E NameError: name 'next_button_class' is not defined -________________________ test_grab_terminal_output_EKS _________________________ -test_selenium_mc.py:252: in test_grab_terminal_output_EKS - terminal_output_element = WebDriverWait(driver, 10).until( -../../../.local/lib/python3.8/site-packages/selenium/webdriver/support/wait.py:101: in until - raise TimeoutException(message, screen, stacktrace) -E selenium.common.exceptions.TimeoutException: Message: -E Stacktrace: -E #0 0x5567e7e80f83 -E #1 0x5567e7b39cf7 -E #2 0x5567e7b8999e -E #3 0x5567e7b89aa1 -E #4 0x5567e7bd4d64 -E #5 0x5567e7bb30dd -E #6 0x5567e7bd2006 -E #7 0x5567e7bb2e53 -E #8 0x5567e7b7add4 -E #9 0x5567e7b7c1de -E #10 0x5567e7e45531 -E #11 0x5567e7e49455 -E #12 0x5567e7e31f55 -E #13 0x5567e7e4a0ef -E #14 0x5567e7e1599f -E #15 0x5567e7e6e008 -E #16 0x5567e7e6e1d7 -E #17 0x5567e7e80124 -E #18 0x7f3721f2dac3 - -During handling of the above exception, another exception occurred: -test_selenium_mc.py:256: in test_grab_terminal_output_EKS - raise Exception("Failed to find or load the terminal output element within the specified time.") -E Exception: Failed to find or load the terminal output element within the specified time. -________________________ test_grab_terminal_output_SPS _________________________ -test_selenium_mc.py:381: in test_grab_terminal_output_SPS - assert "Error" in output_text.lower(), "Success not found in terminal output" -E AssertionError: Success not found in terminal output -E assert 'Error' in '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' -E + where '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n' = () -E + where = '\n\nundefined\n\n\nundefined\nundefined\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n'.lower -=========================== short test summary info ============================ -FAILED test_selenium_mc.py::test_EKS_module_name - Exception: Failed to find ... -FAILED test_selenium_mc.py::test_EKS_module_branch - Exception: Textbox for b... -FAILED test_selenium_mc.py::test_click_EKS_install_btns - NameError: name 'ne... -FAILED test_selenium_mc.py::test_grab_terminal_output_EKS - Exception: Failed... -FAILED test_selenium_mc.py::test_grab_terminal_output_SPS - AssertionError: S... -ERROR test_selenium_mc.py::test_click_install_EKS_btn - Exception: Failed to ... -=============== 5 failed, 8 passed, 1 error in 91.56s (0:01:31) ================ diff --git a/nightly_tests/run.sh b/nightly_tests/run.sh deleted file mode 100755 index 83ffdd63..00000000 --- a/nightly_tests/run.sh +++ /dev/null @@ -1,467 +0,0 @@ -#!/bin/bash - -DESTROY="" -RUN_TESTS="" -PROJECT_NAME="" -VENUE_NAME="" -MC_VERSION="latest" -DEPLOYMENT_START_TIME=$(date +%s) -MC_SHA="" -CONFIG_FILE="marketplace_config.yaml" # Set default config file -# Function to display usage instructions -usage() { - echo "Usage: $0 --destroy --run-tests --project-name --venue-name [--mc-version ] [--mc-sha ] [--config-file ]" - exit 1 -} - -# Parse command line options -while [[ $# -gt 0 ]]; do - case "$1" in - --destroy) - case "$2" in - true) - DESTROY=true - ;; - false) - DESTROY=false - ;; - *) - echo "Invalid argument for --destroy. Please specify 'true' or 'false'." >&2 - exit 1 - ;; - esac - shift 2 - ;; - --run-tests) - case "$2" in - true) - RUN_TESTS=true - ;; - false) - RUN_TESTS=false - ;; - *) - echo "Invalid argument for --run-tests. Please specify 'true' or 'false'." >&2 - exit 1 - ;; - esac - shift 2 - ;; - --project-name) - PROJECT_NAME="$2" - shift 2 - ;; - --venue-name) - VENUE_NAME="$2" - shift 2 - ;; - --mc-version) - MC_VERSION="$2" - shift 2 - ;; - --config-file) - CONFIG_FILE="$2" - shift 2 - ;; - --mc-sha) - MC_SHA="$2" - shift 2 - ;; - *) - echo "Invalid option: $1" >&2 - exit 1 - ;; - esac -done - -# Check if mandatory options are provided -if [[ -z $DESTROY ]]; then - usage -fi -if [[ -z $RUN_TESTS ]]; then - usage -fi -if [[ -z $PROJECT_NAME ]]; then - usage -fi -if [[ -z $VENUE_NAME ]]; then - usage -fi - -# -# Does a deployment already exist for this project/venue? -# If so, then don't continue with this deployment, -# warn the user, and bail out. -# -echo "Checking for existing deployment for (project=${PROJECT_NAME}, venue=${VENUE_NAME}) ..." -aws ssm get-parameter --name "/unity/${PROJECT_NAME}/${VENUE_NAME}/deployment/status" 2>ssm_lookup.txt -if [[ `grep "ParameterNotFound" ssm_lookup.txt | wc -l` == "1" ]]; then - echo "Existing deployment not found. Continuing with deployment..." - rm ssm_lookup.txt -else - echo "ERROR: A deployment appears to already exist for project=${PROJECT_NAME}, venue=${VENUE_NAME}." - echo " Please cleanup the resources for this deployment, before continuing!" - rm ssm_lookup.txt - exit 1 -fi - -# Install python3-pip -sudo apt update -sudo apt install -y python3-pip - -# Install packages required for selenium tests -# -# Install pytest if not installed -pip3 list | grep pytest > out.txt -if ! grep -q pytest out.txt; then - echo "Installing pytest..." - pip3 install pytest -fi - -# Install boto3 if not installed -pip3 list | grep boto3 > out.txt -if ! grep -q boto3 out.txt; then - echo "Installing boto3..." - pip3 install boto3 -fi - -# Install selenium if not installed -pip3 list | grep selenium > out.txt -if ! grep -q selenium out.txt; then - echo "Installing selenium..." - pip3 install selenium -fi - -rm out.txt - -echo "RUN ARGUMENTS: " -echo " - Destroy stack at end of script? $DESTROY" -echo " - Run tests? $RUN_TESTS" -echo " - Project Name: $PROJECT_NAME" -echo " - Venue Name: $VENUE_NAME" -echo " - MC Version: $MC_VERSION" -echo " - MC SHA: $MC_SHA" -echo " - Config File: $CONFIG_FILE" - -echo "---------------------------------------------------------" - -export MC_SHA="${MC_SHA}" -export STACK_NAME="unity-management-console-${PROJECT_NAME}-${VENUE_NAME}" -export GH_BRANCH=main -TODAYS_DATE=$(date '+%F_%H-%M') -LOG_DIR=nightly_logs/log_${TODAYS_DATE} - -# -# Create common SSM params -# -source ./set_common_ssm_params.sh -export MC_INSTANCETYPE_VAL="${MC_INSTANCETYPE_VAL}" -export CS_PRIVILEGED_POLICY_NAME_VAL="${CS_PRIVILEGED_POLICY_NAME_VAL}" -export GITHUB_USERNAME_VAL="${GITHUB_USERNAME_VAL}" -export GITHUB_USEREMAIL_VAL="${GITHUB_USEREMAIL_VAL}" -export GITHUB_TOKEN_VAL="${GITHUB_TOKEN_VAL}" -export SLACK_URL_VAL="${SLACK_URL_VAL}" -export VPC_ID_VAL="${VPC_ID_VAL}" -export SUBNET_LIST_VAL="${SUBNET_LIST_VAL}" -export PUB_SUBNET_1_VAL="${PUB_SUBNET_1_VAL}" -export PUB_SUBNET_2_VAL="${PUB_SUBNET_2_VAL}" -export PRIV_SUBNET_1_VAL="${PRIV_SUBNET_1_VAL}" -export PRIV_SUBNET_2_VAL="${PRIV_SUBNET_2_VAL}" -export EKS_AMI_25_VAL="${EKS_AMI_25_VAL}" -export EKS_AMI_26_VAL="${EKS_AMI_26_VAL}" -export EKS_AMI_27_VAL="${EKS_AMI_27_VAL}" - -# -# Check values are set -# -if [ -z "$GITHUB_TOKEN_VAL" ] ; then - echo "ERROR: Could not read Github Token from SSM." ; exit 1 -fi -if [ -z "$SLACK_URL_VAL" ] ; then - echo "ERROR: Could not read Slack URL from SSM." ; exit 1 -fi -if [ -z "$GITHUB_USERNAME_VAL" ] ; then - echo "ERROR: Could not read Github username from SSM." ; exit 1 -fi -if [ -z "$GITHUB_USEREMAIL_VAL" ] ; then - echo "ERROR: Could not read Github user email from SSM." ; exit 1 -fi - -#cd ../aws_role_create -#./create_roles_and_policies.sh -#cd ../nightly_tests - -# -# Make sure git is properly setup -# -git config --global user.email ${GITHUB_USEREMAIL_VAL} -git config --global user.name ${GITHUB_USERNAME_VAL} -git remote set-url origin https://oauth2:${GITHUB_TOKEN_VAL}@github.com/unity-sds/unity-cs-infra.git - -rm -f nightly_output.txt -rm -f cloudformation_events.txt -mkdir -p ${LOG_DIR} - -NIGHTLY_HASH=$(git rev-parse --short HEAD) -echo "Repo Hash (Nightly Test): [$NIGHTLY_HASH]" >> nightly_output.txt -echo "Repo Hash (Nightly Test): [$NIGHTLY_HASH]" -echo "Management Console SHA: [$MC_SHA]" - -## update self (unity-cs-infra repository) -git pull origin ${GH_BRANCH} -git checkout ${GH_BRANCH} - -# -# Deploy the Management Console using CloudFormation -# -bash deploy.sh --stack-name "${STACK_NAME}" --project-name "${PROJECT_NAME}" --venue-name "${VENUE_NAME}" --mc-version "${MC_VERSION}" --config-file "$CONFIG_FILE" --mc-sha "$MC_SHA" - -echo "Deploying Management Console..." >> nightly_output.txt -echo "Deploying Management Console..." - -# Start the timer -start_time=$(date +%s) - - -aws cloudformation describe-stack-events --stack-name ${STACK_NAME} >> cloudformation_events.txt - -sleep 420 - -# Get MC URL from SSM (Management Console populates this value) -export SSM_MC_URL="/unity/${PROJECT_NAME}/${VENUE_NAME}/management/httpd/loadbalancer-url" -echo "SSM Parameter Name: ${SSM_MC_URL}" - -# Get the raw SSM parameter value and print it -RAW_SSM_VALUE=$(aws ssm get-parameter --name ${SSM_MC_URL} --query "Parameter.Value" --output text) - -export MANAGEMENT_CONSOLE_URL="${RAW_SSM_VALUE}" -echo "Management Console URL: ${MANAGEMENT_CONSOLE_URL}" - -# Extract just the hostname with debug prints -STEP1=$(echo $MANAGEMENT_CONSOLE_URL | sed 's|^http://||' | sed 's|^HTTP://||') - -STEP2=$(echo $STEP1 | cut -d':' -f1) - -ALB_HOST=$(echo $STEP2 | cut -d'/' -f1) - -echo "Updating Apache configuration in S3..." - -# Create venue path from project and venue name -VENUE_PATH="/${PROJECT_NAME}/${VENUE_NAME}/" - -# Create temporary files -TEMP_CONFIG_FILE="/tmp/venue_config.txt" -TEMP_FULL_CONFIG="/tmp/unity-cs.conf" - -# Create the Apache configuration block with markers -cat << EOF > $TEMP_CONFIG_FILE - - # ---------- BEGIN ${PROJECT_NAME}/${VENUE_NAME} ---------- - # ${PROJECT_NAME}/${VENUE_NAME} - # - Define VENUE_ALB_HOST ${ALB_HOST} - Define VENUE_ALB_PORT 8080 - Define VENUE_ALB_PATH ${VENUE_PATH} - RewriteEngine On - RewriteCond %{HTTP:Connection} Upgrade [NC] - RewriteCond %{HTTP:Upgrade} websocket [NC] - RewriteCond %{REQUEST_URI} "\${VENUE_ALB_PATH}" - RewriteRule \${VENUE_ALB_PATH}(.*) ws://\${VENUE_ALB_HOST}:\${VENUE_ALB_PORT}\${VENUE_ALB_PATH}\$1 [P,L] [END] - - ProxyPreserveHost on - AuthType openid-connect - Require valid-user - - # Added to point to httpd within the venue account - ProxyPass "http://\${VENUE_ALB_HOST}:\${VENUE_ALB_PORT}\${VENUE_ALB_PATH}" - ProxyPassReverse "http://\${VENUE_ALB_HOST}:\${VENUE_ALB_PORT}\${VENUE_ALB_PATH}" - RequestHeader set "X-Forwarded-Proto" expr=%{REQUEST_SCHEME} - RequestHeader set "X-Forwarded-Host" "www.dev.mdps.mcp.nasa.gov:4443" - - # ---------- END ${PROJECT_NAME}/${VENUE_NAME} ---------- - -EOF - -# Get environment from SSM -export ENV_SSM_PARAM="/unity/account/venue" -ENVIRONMENT=$(aws ssm get-parameter --name ${ENV_SSM_PARAM} --query "Parameter.Value" --output text ) -echo "Environment from SSM: ${ENVIRONMENT}" - -# Use environment in S3 bucket name -S3_BUCKET="ucs-shared-services-apache-config-${ENVIRONMENT}" - -# Download current config from S3 -aws s3 cp s3://${S3_BUCKET}/unity-cs.conf $TEMP_FULL_CONFIG - -# Insert new config before -sed -i "/<\/VirtualHost>/e cat $TEMP_CONFIG_FILE" $TEMP_FULL_CONFIG - -# Upload updated config back to S3 -if aws s3 cp $TEMP_FULL_CONFIG s3://${S3_BUCKET}/unity-cs.conf; then - echo "Successfully updated Apache configuration in S3" -else - echo "Failed to update Apache configuration in S3" - exit 1 -fi - -# Clean up temporary files -rm $TEMP_CONFIG_FILE -rm $TEMP_FULL_CONFIG - -if [[ "$RUN_TESTS" == "true" ]]; then - echo "Checking if Docker is installed..." - # - # Check if Docker is installed - # - if ! command -v docker &> /dev/null; then - echo "Docker not installed. Installing Docker..." - - # Add Docker's official GPG key - sudo apt-get update - sudo apt-get install -y ca-certificates curl gnupg - sudo install -m 0755 -d /etc/apt/keyrings - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg - sudo chmod a+r /etc/apt/keyrings/docker.gpg - - # Add the repository to Apt sources - echo \ - "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \ - $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ - sudo tee /etc/apt/sources.list.d/docker.list > /dev/null - sudo apt-get update - - # Install Docker - sudo apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin - sudo systemctl start docker - sleep 10 - - echo "Docker installed successfully." - else - echo "Docker already installed [OK]" - fi - - sudo docker pull selenium/standalone-chrome - echo "Launching selenium docker..." - CONTAINER_ID=$(sudo docker run -d -p 4444:4444 -v /dev/shm:/dev/shm selenium/standalone-chrome) - sleep 10 - - cp nightly_output.txt selenium_nightly_output.txt -else - echo "Not checking if docker is installed (--run-tests false)." -fi # END IF RUN-TESTS - -# -# Wait until a succesful HTTP code is being returned -# from the load balancer, indicating the Management Console is accessible -# -interval=10 # polling interval in seconds -max_attempts=50 -attempt=1 -while [ $attempt -le $max_attempts ]; do - response_code=$(curl -s -o /dev/null -w "%{http_code}" "$MANAGEMENT_CONSOLE_URL") - if [[ $response_code =~ ^[2-3][0-9]{2}$ ]]; then - echo "Success! HTTP response code $response_code received." - break - else - echo "Attempt $attempt to reach Management Console via httpd -- Received HTTP response code $response_code. Retrying in $interval seconds..." - sleep $interval - ((attempt++)) - fi -done -# End the timer -end_time=$(date +%s) - -# Calculate the duration -duration=$((end_time - start_time)) - -# MC Creation Time -echo "Management Console Creation Time: $duration seconds" -echo "Management Console Creation Time: $duration seconds" >> nightly_output.txt - - -# SSM Creation, CloudFormation, Bootstrap time -DEPLOYMENT_END_TIME=$(date +%s) -DEPLOYMENT_DURATION=$((DEPLOYMENT_END_TIME - DEPLOYMENT_START_TIME)) - -echo "Total Creation Time(SMM params, CloudFormation, MC): $DEPLOYMENT_DURATION seconds" -echo "Total Creation Time(SMM params, CloudFormation, MC): $DEPLOYMENT_DURATION seconds" >> nightly_output.txt - -# Cloud formation smoke_test -echo "Running Smoke Test" -# python3 smoke_test.py >> nightly_output.txt 2>&1 - -# Save the exit status of the Python script -SMOKE_TEST_STATUS=0 - -if [ $SMOKE_TEST_STATUS -eq 0 ]; then - echo "Smoke test was successful. Continuing with bootstrap and tests." - echo "Smoke test was successful. Continuing with bootstrap and tests." >> nightly_output.txt - - if [[ "$RUN_TESTS" == "true" ]]; then - # Place the rest of your script here that should only run if smoke_test.py succeeds - echo "Running Selenium tests..." - pytest test_selenium_mc.py -v --tb=short >> selenium_nightly_output.txt 2>&1 - - # Concatenate makereport_output.txt to nightly_output.txt - cat makereport_output.txt >> nightly_output.txt - - # Cleanup and log management - echo "Stopping Selenium docker container..." - sudo docker stop $CONTAINER_ID - - cp selenium_nightly_output.txt "nightly_output_$TODAYS_DATE.txt" - mv nightly_output_$TODAYS_DATE.txt ${LOG_DIR} - mv selenium_unity_images/* ${LOG_DIR} - - #Delete logs older then 2 weeks - bash delete_old_logs.sh - - # Push the output logs/screenshots to Github for auditing purposes - echo "Pushing test results to ${LOG_DIR}..." - git add nightly_logs/ - git add "${LOG_DIR}/nightly_output_$TODAYS_DATE.txt" - git add ${LOG_DIR}/* - git commit -m "Add nightly output for $TODAYS_DATE" - git pull origin ${GH_BRANCH} - git checkout ${GH_BRANCH} - git push origin ${GH_BRANCH} - else - echo "Not running Selenium tests. (--run-tests false)" - fi -else - echo "Smoke test failed or could not be verified. Skipping tests." - echo "Smoke test failed or could not be verified. Skipping tests." >> nightly_output.txt -fi - -# Decide on resource destruction based on the smoke test result or DESTROY flag -if [[ "$DESTROY" == "true" ]] || [ $SMOKE_TEST_STATUS -ne 0 ]; then - echo "Destroying resources..." - bash destroy.sh --project-name "${PROJECT_NAME}" --venue-name "${VENUE_NAME}" -else - echo "Not destroying resources. Smoke tests were successful and no destruction requested." -fi - -# -# Parse and print out CloudFormation events -# -cat cloudformation_events.txt |sed 's/\s*},*//g' |sed 's/\s*{//g' |sed 's/\s*\]//' |sed 's/\\"//g' |sed 's/"//g' |sed 's/\\n//g' |sed 's/\\/-/g' |sed 's./.-.g' |sed 's.\\.-.g' |sed 's/\[//g' |sed 's/\]//g' |sed 's/ */ /g' |sed 's/%//g' |grep -v StackName |grep -v StackId |grep -v PhysicalResourceId > CF_EVENTS.txt -EVENTS=$(cat CF_EVENTS.txt |grep -v ResourceProperties) -echo "$EVENTS" > CF_EVENTS.txt -cat CF_EVENTS.txt -CF_EVENTS=$(cat CF_EVENTS.txt) - -# The rest of your script, including posting to Slack, can go here -# Ensure to only post to Slack if tests were run successfully -if [[ "$RUN_TESTS" == "true" ]]; then - - OUTPUT=$(cat nightly_output.txt) - GITHUB_LOGS_URL="https://github.com/unity-sds/unity-cs-infra/tree/${GH_BRANCH}/nightly_tests/${LOG_DIR}" - - # Post results to Slack - curl -X POST -H 'Content-type: application/json' \ - --data '{"cloudformation_summary": "'"${OUTPUT}"'", "cloudformation_events": "'"${CF_EVENTS}"'", "logs_url": "'"${GITHUB_LOGS_URL}"'"}' \ - ${SLACK_URL_VAL} -else - echo "Not posting results to slack (--run-tests)" -fi - diff --git a/nightly_tests/set_common_ssm_params.sh b/nightly_tests/set_common_ssm_params.sh deleted file mode 100755 index 0b084bff..00000000 --- a/nightly_tests/set_common_ssm_params.sh +++ /dev/null @@ -1,239 +0,0 @@ -#!/bin/bash - -echo "set_common_ssm_params.sh ..." - -# -# Sub-routine to check, and populate if missing -# -populate_if_not_exists_ssm_param() { - local key=$1 - local capability=$2 - local capVersion=$3 - local component=$4 - local name=$5 - local suggestedDefault=$6 - echo "populate_if_not_exists_ssm_param: ${key} ..." - aws ssm get-parameter --name "$key" 2>ssm_lookup.txt - if [[ `grep "ParameterNotFound" ssm_lookup.txt | wc -l` == "1" ]]; then - echo "SSM param ${key} not found." - echo "Suggested value to use here: ${suggestedDefault}" - echo "ENTER VALUE to set for ${key}: " - read user_input - create_ssm_param "${key}" "${user_input}" "${capability}" "${capVersion}" "${component}" "${name}" - else - echo "SSM param ${key} exists. Continuing..." - fi - rm ssm_lookup.txt -} - -# -# Sub-routine to gracefully delete a SSM parameter -# -delete_ssm_param() { - local key=$1 - echo "Deleting SSM parameter: ${key} ..." - local lookup=$(aws ssm get-parameter --name "$key" 2>&1) - if [[ "$(echo "${lookup}" | grep -q "ParameterNotFound" && echo no)" == "no" ]]; then - echo "SSM param ${key} not found. Not attempting a delete." - else - aws ssm delete-parameter --name "${key}" || echo "ERROR: SSM delete failed for $key" - fi -} - -# -# Sub-routine to create a SSM parameter, -# and tag it (ensuring mandatory AWS resource tags are applied) -# -create_ssm_param() { - local key=$1 - local value=$2 - local capability=$3 - local capVersion=$4 - local component=$5 - local name=$6 -echo "Creating SSM parameter : ${key} = ${value} ..." - aws ssm put-parameter --name "${key}" --value "${value}" --type String \ - --tags \ - "Key=Venue,Value=${VENUE_NAME}" \ - "Key=ServiceArea,Value=cs" \ - "Key=Capability,Value=${capability}" \ - "Key=CapVersion,Value=${capVersion}" \ - "Key=Component,Value=${component}" \ - "Key=Name,Value=${name}" \ - "Key=Proj,Value=${PROJECT_NAME}" \ - "Key=CreatedBy,Value=cs" \ - "Key=Env,Value=${VENUE_NAME}" \ - "Key=Stack,Value=${component}" 2>/dev/null - # TODO: Is there a SSM Description field (to add above)? - if [ $? -ne 0 ]; then - echo "ERROR: SSM create failed for $key" - fi -} - -# -# -# -refresh_ssm_param() { - local key=$1 - local value=$2 - local capability=$3 - local capVersion=$4 - local component=$5 - local name=$6 - delete_ssm_param "${key}" - create_ssm_param "${key}" "${value}" "${capability}" "${capVersion}" "${component}" "${name}" -} - -get_ssm_val() { - local key=$1 - aws ssm get-parameter --name ${key} --with-decryption --query 'Parameter.Value' --output text -} - -# -# SSM: /unity/cs/account/management-console/instancetype -# -MC_INSTANCETYPE_SSM="/unity/cs/account/management-console/instancetype" -MC_INSTANCETYPE_VAL="c6i.xlarge" -refresh_ssm_param "${MC_INSTANCETYPE_SSM}" "${MC_INSTANCETYPE_VAL}" \ - "management" "todo" "console" \ - "unity-all-cs-managementConsole-instanceTypeSsm" - -# -# SSM: /unity/cs/account/privilegedpolicyname -# -CS_PRIVILEGED_POLICY_NAME_SSM="/unity/cs/account/privilegedpolicyname" -CS_PRIVILEGED_POLICY_NAME_VAL="mcp-tenantOperator-AMI-APIG" -refresh_ssm_param "${CS_PRIVILEGED_POLICY_NAME_SSM}" "${CS_PRIVILEGED_POLICY_NAME_VAL}" \ - "management" "todo" "console" \ - "unity-all-cs-privilegedpolicynameSsm" - -# -# SSM: /unity/cs/github/username -# -GITHUB_USERNAME_SSM="/unity/cs/github/username" -populate_if_not_exists_ssm_param "${GITHUB_USERNAME_SSM}" \ - "management" "todo" "console" \ - "unity-all-cs-githubUsernameSsm" \ - "[please consult with team for value]" -GITHUB_USERNAME_VAL=$(get_ssm_val "$GITHUB_USERNAME_SSM") - -# -# SSM: /unity/cs/github/useremail -# -GITHUB_USEREMAIL_SSM="/unity/cs/github/useremail" -populate_if_not_exists_ssm_param "${GITHUB_USEREMAIL_SSM}" \ - "management" "todo" "console" \ - "unity-all-cs-githubUseremailSsm" \ - "[please consult with team for value]" -GITHUB_USEREMAIL_VAL=$(get_ssm_val "$GITHUB_USEREMAIL_SSM") - -# -# SSM: /unity/cs/githubtoken -# -GITHUB_TOKEN_SSM="/unity/cs/githubtoken" -populate_if_not_exists_ssm_param "${GITHUB_TOKEN_SSM}" \ - "management" "todo" "console" \ - "unity-all-cs-githubtokenSsm" \ - "[please consult with team for value]" -GITHUB_TOKEN_VAL=$(get_ssm_val "$GITHUB_TOKEN_SSM") - -# -# SSM: /unity/ci/slack-web-hook-url -# -SLACK_WEB_HOOK_URL_SSM="/unity/ci/slack-web-hook-url" -populate_if_not_exists_ssm_param "${SLACK_WEB_HOOK_URL_SSM}" \ - "management" "todo" "console" \ - "unity-all-cs-slackWebHookUrlSsm" \ - "[please consult with team for value]" -SLACK_URL_VAL=$(get_ssm_val "$SLACK_WEB_HOOK_URL_SSM") - -# -# SSM: /unity/account/network/vpc_id -# -VPC_ID_SSM="/unity/account/network/vpc_id" -VPC_ID_VAL=$(aws ec2 describe-vpcs |jq -r '.Vpcs[].VpcId') -refresh_ssm_param "${VPC_ID_SSM}" "${VPC_ID_VAL}" "networking" "na" "vpc" "unity-all-cs-networking-vpcIdSsm" - -# -# SSM: /unity/account/network/subnet_list -# -SUBNET_LIST_SSM="/unity/account/network/subnet_list" -SUBNET_LIST_VAL=$(./get_subnet_list_json.sh) -delete_ssm_param "${SUBNET_LIST_SSM}" -create_ssm_param "${SUBNET_LIST_SSM}" "${SUBNET_LIST_VAL}" "networking" "na" "vpc" "unity-all-cs-networking-subnetListSsm" - -# -# SSM: /unity/account/network/publicsubnet1 -# -PUB_SUBNET_1_SSM="/unity/account/network/publicsubnet1" -PUB_SUBNET_1_VAL=$(echo "${SUBNET_LIST_VAL}" | jq -r '.public[0]') -refresh_ssm_param "${PUB_SUBNET_1_SSM}" "${PUB_SUBNET_1_VAL}" "networking" "na" "vpc" "unity-all-cs-networking-publicSubnet1Ssm" - -# -# SSM: /unity/account/network/publicsubnet2 -# -PUB_SUBNET_2_SSM="/unity/account/network/publicsubnet2" -PUB_SUBNET_2_VAL=$(echo "${SUBNET_LIST_VAL}" | jq -r '.public[1]') -refresh_ssm_param "${PUB_SUBNET_2_SSM}" "${PUB_SUBNET_2_VAL}" "networking" "na" "vpc" "unity-all-cs-networking-publicSubnet2Ssm" - -# -# SSM: /unity/account/network/privatesubnet1 -# -PRIV_SUBNET_1_SSM="/unity/account/network/privatesubnet1" -PRIV_SUBNET_1_VAL=$(echo "${SUBNET_LIST_VAL}" | jq -r '.private[0]') -refresh_ssm_param "${PRIV_SUBNET_1_SSM}" "${PRIV_SUBNET_1_VAL}" "networking" "na" "vpc" "unity-all-cs-networking-privateSubnet1Ssm" - -# -# SSM: /unity/account/network/privatesubnet2 -# -PRIV_SUBNET_2_SSM="/unity/account/network/privatesubnet2" -PRIV_SUBNET_2_VAL=$(echo "${SUBNET_LIST_VAL}" | jq -r '.private[1]') -refresh_ssm_param "${PRIV_SUBNET_2_SSM}" "${PRIV_SUBNET_2_VAL}" "networking" "na" "vpc" "unity-all-cs-networking-privateSubnet2Ssm" - -# -# SSM: /unity/account/network/certificate-arn -# -CERTIFICATE_ARN_SSM="/unity/account/network/certificate-arn" -populate_if_not_exists_ssm_param "${CERTIFICATE_ARN_SSM}" \ - "network" "todo" "certificate" \ - "unity-all-cs-certificateArnSsm" \ - "[enter the certificate ARN. Example: " -CERTIFICATE_ARN_VAL=$(get_ssm_val "${CERTIFICATE_ARN_SSM}") - -# -# SSM: /unity/account/eks/amis/aml2-eks-1-29 -# -EKS_AMI_29_SSM="/unity/account/eks/amis/aml2-eks-1-29" -EKS_AMI_29_VAL=$(get_ssm_val "/mcp/amis/aml2-eks-1-29") -refresh_ssm_param "${EKS_AMI_29_SSM}" "${EKS_AMI_29_VAL}" "processing" "na" "vpc" "unity-all-cs-processing-aml2Eks129Ssm" - -# -# SSM: /unity/account/eks/amis/aml2-eks-1-30 -# -EKS_AMI_30_SSM="/unity/account/eks/amis/aml2-eks-1-30" -EKS_AMI_30_VAL=$(get_ssm_val "/mcp/amis/aml2-eks-1-30") -refresh_ssm_param "${EKS_AMI_30_SSM}" "${EKS_AMI_30_VAL}" "processing" "na" "vpc" "unity-all-cs-processing-aml2Eks130Ssm" - -# -# SSM: /unity/shared-services/account -# -SHARED_SERVICES_AWS_ACCOUNT_SSM="/unity/shared-services/aws/account" -populate_if_not_exists_ssm_param "${SHARED_SERVICES_AWS_ACCOUNT_SSM}" \ - "account" "todo" "aws" \ - "unity-all-cs-sharedServicesAwsAccountSsm" \ - "[enter the AWS account ID of the shared services account]" -SHARED_SERVICES_AWS_ACCOUNT_VAL=$(get_ssm_val "$SHARED_SERVICES_AWS_ACCOUNT_SSM") - -# -# SSM: /unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list -# -CS_LAMBD_CLIENT_ID_LIST_SSM="/unity/cs/routing/venue-api-gateway/cs-lambda-authorizer-cognito-client-id-list" -CS_LAMBD_CLIENT_ID_LIST_VAL="na" -refresh_ssm_param "${CS_LAMBD_CLIENT_ID_LIST_SSM}" "${CS_LAMBD_CLIENT_ID_LIST_VAL}" "account" "na" "aws" "unity-all-cs-processing-lambdaAuthCognitoClientId" - -# -# SSM: /unity/shared-services/aws/account/region -# -ACCOUNT_REGION_SSM="/unity/shared-services/aws/account/region" -ACCOUNT_REGION_VAL=$(aws ec2 describe-availability-zones --query "AvailabilityZones[0].RegionName" --output text) -refresh_ssm_param "${ACCOUNT_REGION_SSM}" "${ACCOUNT_REGION_VAL}" "account" "na" "aws" "unity-all-cs-processing-sharedServicesAwsAccountRegion" diff --git a/nightly_tests/set_deployment_ssm_params.sh b/nightly_tests/set_deployment_ssm_params.sh deleted file mode 100755 index 6135c7ee..00000000 --- a/nightly_tests/set_deployment_ssm_params.sh +++ /dev/null @@ -1,143 +0,0 @@ -#!/bin/bash - -# -PROJECT_NAME="" -VENUE_NAME="" - -# Function to display usage instructions -usage() { - echo "Usage: $0 --project-name --venue-name " - exit 1 -} - -# -# It's mandatory to speciy a valid command arguments -# -if [[ $# -ne 4 ]]; then - usage -fi - -# Parse command line options -while [[ $# -gt 0 ]]; do - case "$1" in - --project-name) - PROJECT_NAME="$2" - shift 2 - ;; - --venue-name) - VENUE_NAME="$2" - shift 2 - ;; - *) - usage - ;; - esac -done - -# Check if mandatory options are provided -if [[ -z $PROJECT_NAME ]]; then - usage -fi -if [[ -z $VENUE_NAME ]]; then - usage -fi - -echo "set_deployment_ssm_params.sh :: PROJECT_NAME: ${PROJECT_NAME}" -echo "set_deployment_ssm_params.sh :: VENUE_NAME: ${VENUE_NAME}" - -# -# Sub-routine to gracefully delete a SSM parameter -# -delete_ssm_param() { - local key=$1 - echo "Deleting SSM parameter: ${key} ..." - local lookup=$(aws ssm get-parameter --name "$key" 2>&1) - if [[ "$(echo "${lookup}" | grep -q "ParameterNotFound" && echo no)" == "no" ]]; then - echo "SSM param ${key} not found. Not attempting a delete." - else - aws ssm delete-parameter --name "${key}" || echo "ERROR: SSM delete failed for $key" - fi -} - -# -# Sub-routine to create a SSM parameter, and tag it -# -create_ssm_param() { - local key=$1 - local value=$2 - local capability=$3 - local capVersion=$4 - local component=$5 - local name=$6 -echo "Creating SSM parameter : ${key} = ${value} ..." - aws ssm put-parameter --name "${key}" --value "${value}" --type String \ - --tags \ - "Key=Venue,Value=${VENUE_NAME}" \ - "Key=ServiceArea,Value=cs" \ - "Key=Capability,Value=${capability}" \ - "Key=CapVersion,Value=${capVersion}" \ - "Key=Component,Value=${component}" \ - "Key=Name,Value=${name}" \ - "Key=Proj,Value=${PROJECT_NAME}" \ - "Key=CreatedBy,Value=cs" \ - "Key=Env,Value=${VENUE_NAME}" \ - "Key=Stack,Value=${component}" 2>/dev/null - # TODO: Is there a SSM Description field (to add above)? - if [ $? -ne 0 ]; then - echo "ERROR: SSM create failed for $key" - fi -} - -# -# -# -refresh_ssm_param() { - local key=$1 - local value=$2 - local capability=$3 - local capVersion=$4 - local component=$5 - local name=$6 - delete_ssm_param "${key}" - create_ssm_param "${key}" "${value}" "${capability}" "${capVersion}" "${component}" "${name}" -} - -get_ssm_val() { - local key=$1 - aws ssm get-parameter --name ${key} --with-decryption --query 'Parameter.Value' --output text -} - -# -# Create SSM: -# /unity/deployment///project-name -# -PROJECT_NAME_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/project-name" -PROJECT_NAME_VAL="${PROJECT_NAME}" -refresh_ssm_param "${PROJECT_NAME_SSM}" "${PROJECT_NAME_VAL}" "management" "todo" "console" \ - "${PROJECT_NAME}-${VENUE_NAME}-cs-management-projectNameSsm" - -# -# Create SSM: -# /unity/deployment///venue-name -# -VENUE_NAME_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/venue-name" -VENUE_NAME_VAL="${VENUE_NAME}" -refresh_ssm_param "${VENUE_NAME_SSM}" "${VENUE_NAME_VAL}" "management" "todo" "console" \ -"${PROJECT_NAME}-${VENUE_NAME}-cs-management-venueNameSsm" - -# -# Create SSM: -# /unity/deployment///status -# -DEPLOYMENT_STATUS_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/deployment/status" -DEPLOYMENT_STATUS_VAL="deploying" -refresh_ssm_param "${DEPLOYMENT_STATUS_SSM}" "${DEPLOYMENT_STATUS_VAL}" "management" "todo" "console" \ -"${PROJECT_NAME}-${VENUE_NAME}-cs-management-deploymentStatusSsm" - -# Create SSM: -# /unity/${project}/${venue}/cs/monitoring/s3/bucketName -# -S3_HEALTH_CHECK_NAME_SSM="/unity/${PROJECT_NAME}/${VENUE_NAME}/cs/monitoring/s3/bucketName" -S3_HEALTH_CHECK_NAME_VAL="unity-${PROJECT_NAME}-${VENUE_NAME}-bucket" -refresh_ssm_param "${S3_HEALTH_CHECK_NAME_SSM}" "${S3_HEALTH_CHECK_NAME_VAL}" "management" "todo" "console" \ -"${PROJECT_NAME}-${VENUE_NAME}-cs-management-S3HealthCheckBucketNameSsm" diff --git a/nightly_tests/smoke_test.py b/nightly_tests/smoke_test.py deleted file mode 100644 index be82f815..00000000 --- a/nightly_tests/smoke_test.py +++ /dev/null @@ -1,53 +0,0 @@ -import os -import sys -from selenium import webdriver -from selenium.webdriver.common.by import By -from selenium.webdriver.chrome.options import Options -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC -from selenium.common.exceptions import TimeoutException -import time - -def setup_driver(): - - options = Options() - options.add_argument('--no-sandbox') - options.add_argument('--disable-dev-shm-usage') - options.add_argument('window-size=1024x768') - grid_url = 'http://localhost:4444/wd/hub' - - # Create a Remote WebDriver - driver = webdriver.Remote( - command_executor=grid_url, - options=options - ) - - return driver - - -def bootstrap_process_status(): - url = os.getenv('MANAGEMENT_CONSOLE_URL') - driver = setup_driver() - try: - driver.get(url) - time.sleep(40) - bootstrap_status_element = WebDriverWait(driver, 10).until( - EC.visibility_of_element_located((By.CSS_SELECTOR, 'h5.text-xl')) - ) - status_message = bootstrap_status_element.text - assert "The Bootstrap Process Failed" not in status_message, "Bootstrap process failed" - return True - except TimeoutException: - print("Failed to find the bootstrap status message within the specified time.") - print("Smoke test failed") - return False - except AssertionError as error: - print("Smoke test failed") - print(error) - return False - finally: - driver.quit() - -if __name__ == "__main__": - success = bootstrap_process_status() - sys.exit(0 if success else 1) diff --git a/nightly_tests/spsmarketplace_config_test.yaml b/nightly_tests/spsmarketplace_config_test.yaml deleted file mode 100644 index f27412f3..00000000 --- a/nightly_tests/spsmarketplace_config_test.yaml +++ /dev/null @@ -1,9 +0,0 @@ -MarketplaceItems: - - name: unity-cs-monitoring-lambda - version: 0.1 - - name: unity-apigateway - version: 0.4 - - name: unity-proxy - version: 0.13 - - name: unity-ui - version: 0.8.0 diff --git a/nightly_tests/test_selenium_mc.py b/nightly_tests/test_selenium_mc.py deleted file mode 100644 index deee1971..00000000 --- a/nightly_tests/test_selenium_mc.py +++ /dev/null @@ -1,155 +0,0 @@ -import os -import time -import pytest -from selenium import webdriver -from selenium.webdriver.common.by import By -from selenium.webdriver.chrome.options import Options -from selenium.webdriver.support.ui import WebDriverWait -from selenium.common.exceptions import TimeoutException -from selenium.webdriver.support import expected_conditions as EC -from urllib.parse import urlparse, urlunparse - -# Global variable for the screenshots directory -IMAGE_DIR = 'selenium_unity_images' -screenshot_counter = 1 -# Function to create a new Selenium driver -@pytest.fixture(scope="session") -def driver(): - options = Options() - options.add_argument('--no-sandbox') - options.add_argument('--disable-dev-shm-usage') - options.add_argument('window-size=1024x768') - grid_url = 'http://localhost:4444/wd/hub' - - # Create a Remote WebDriver - driver = webdriver.Remote( - command_executor=grid_url, - options=options - ) - yield driver - driver.quit() -# Function to save screenshot -def save_screenshot(driver, description): - """ - Save a screenshot with a given description, adding a global counter prefix. - """ - global screenshot_counter - screenshot_name = f'{screenshot_counter:02d}_{description}.png' # Format with leading zeros - screenshot_path = os.path.join(IMAGE_DIR, screenshot_name) - driver.save_screenshot(screenshot_path) - screenshot_counter += 1 # Increment the counter - return screenshot_path - -# Fixture to provide the URL without credentials -@pytest.fixture(scope="session") -def url_without_cred(): - # Get the management console URL from the environment variable - management_console_url = os.getenv('MANAGEMENT_CONSOLE_URL') - return management_console_url - -# Function to test login -def test_navigate_to_mc_console(driver, test_results): - # Take a screenshot after login attempt - management_console_url = os.getenv('MANAGEMENT_CONSOLE_URL') - URL_WITHOUT_CRED = management_console_url - - driver.get(URL_WITHOUT_CRED) - time.sleep(2) # Wait for the page to load - expected_url = URL_WITHOUT_CRED.rstrip('/') + '/landing' # Ensures no double slashes if URL_WITHOUT_CRED ends with a slash - assert driver.current_url.lower() == expected_url.lower(), f"URL does not match the expected URL without credentials. Expected: {expected_url}, but got: {driver.current_url}" - - # Create directory for images if it doesn't exist - if not os.path.exists(IMAGE_DIR): - os.makedirs(IMAGE_DIR) - - save_screenshot(driver, 'screenshot_after_navigating_to_URL') - - # Print the current URL for debugging - print("Current URL:", driver.current_url) - - # Assertions to validate successful login - assert driver.current_url.endswith('/ui/landing'), f"Navigation to home page failed. Current URL: {driver.current_url}" - assert driver.title == 'Unity Management Console', "The page title should be Unity Management Console" - -def test_bootstrap_process_status(driver, test_results): - try: - # Find the element that contains the bootstrap status message - bootstrap_status_element = WebDriverWait(driver, 10).until( - EC.visibility_of_element_located((By.CSS_SELECTOR, 'h5.text-xl')) - ) - status_message = bootstrap_status_element.text - - # Take a screenshot for documentation - save_screenshot(driver, 'screenshot_after_bootstrap_check') - - # Check if the message indicates a failure - assert "The Bootstrap Process Failed" not in status_message, "Bootstrap process failed" - - except TimeoutException: - raise Exception("Failed to find the bootstrap status message within the specified time.") - -# Function to test clicking the Go! button -def test_initiate_core_setup(driver, test_results): - try: - # Find and click the Go button - go_button = WebDriverWait(driver, 20).until( - EC.element_to_be_clickable((By.CSS_SELECTOR, 'a[href="/management/ui/setup"].bg-blue-600')) - ) - go_button.click() - - # Wait for the URL to change to the setup page - WebDriverWait(driver, 10).until(EC.url_contains('/ui/setup')) - - except TimeoutException: - raise Exception("Failed to navigate to setup page - either the Go button was not clickable or the URL did not change as expected.") - - # Take a screenshot - save_screenshot(driver, 'screenshot_after_clicking_core_manegement_setup') - - # Assert the current URL ends with '/ui/setup' - assert driver.current_url.endswith('/ui/setup'), f"Navigation to setup page failed - current URL {driver.current_url}" - -def test_core_setup_save_btn(driver, test_results): - time.sleep(10) - try: - # Find and click the Save button - save_button = WebDriverWait(driver, 10).until( - EC.element_to_be_clickable((By.XPATH, "//button[@type='submit' and contains(@class, 'bg-blue-600')]")) - ) - save_button.click() - # Wait some time for the core setup to complete - # There is not status on the install for this action - # So we have to wait X amount untill it completes. - time.sleep(60) - # Take a screenshot - save_screenshot(driver, 'screenshot_after_clicking_core_manegement_save_btn') - - except TimeoutException: - raise Exception("Failed to find or click the core 'Save' button within the specified time.") - -@pytest.fixture -def test_navigate_to_marketplace(driver, url_without_cred, test_results): - # Navigate to the URL without credentials - driver.get(url_without_cred) - time.sleep(5) - - try: - # Find and click the 'Go to Marketplace' button - go_button = WebDriverWait(driver, 20).until( - EC.element_to_be_clickable((By.CSS_SELECTOR, "a[href='/management/ui/marketplace'].bg-blue-600")) - ) - go_button.click() - - # Wait for the URL to update and check it ends with '/ui/marketplace' - WebDriverWait(driver, 20).until(EC.url_contains('/management/ui/marketplace')) - - except TimeoutException: - raise Exception("Failed to navigate to the marketplace - either the button was not clickable or the URL did not change as expected.") - - assert driver.current_url.endswith('/management/ui/marketplace'), "URL does not end with '/management/ui/marketplace'" - - # Take a screenshot for confirmation - save_screenshot(driver, 'screenshot_after_navigating_to_marketplace') - -def pytest_sessionfinish(session, exitstatus): - print_table(session.results)