Skip to content

Commit e5c0976

Browse files
authored
Fix integ stack naming (#1017)
1 parent 51b23cb commit e5c0976

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

integ/resources/create_test_resources.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ fi
1212
# Default BUILD_VERSION to 2 if not set
1313
BUILD_VERSION=${BUILD_VERSION:-2}
1414

15-
aws cloudformation deploy --template-file ./integ/resources/cfn-kinesis-s3-firehose.yml --stack-name integ-test-fluent-bit-${ARCHITECTURE}-v${BUILD_VERSION} --region "$AWS_REGION" --capabilities CAPABILITY_NAMED_IAM --no-fail-on-empty-changeset
15+
aws cloudformation deploy --template-file ./integ/resources/cfn-kinesis-s3-firehose.yml --stack-name integ-test-fluent-bit-${ARCHITECTURE}-V${BUILD_VERSION} --region "$AWS_REGION" --capabilities CAPABILITY_NAMED_IAM --no-fail-on-empty-changeset

integ/resources/delete_test_resources.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ fi
1010
# Default BUILD_VERSION to 2 if not set
1111
BUILD_VERSION=${BUILD_VERSION:-2}
1212

13-
aws cloudformation delete-stack --stack-name integ-test-fluent-bit-${ARCHITECTURE}-v${BUILD_VERSION}
13+
aws cloudformation delete-stack --stack-name integ-test-fluent-bit-${ARCHITECTURE}-V${BUILD_VERSION}

integ/resources/setup_test_environment.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
# Default BUILD_VERSION to 2 if not set
1212
BUILD_VERSION=${BUILD_VERSION:-2}
1313

14-
stackOutputs=$(aws cloudformation describe-stacks --region "$AWS_REGION" --stack-name integ-test-fluent-bit-${ARCHITECTURE}-v${BUILD_VERSION} --output text --query 'Stacks[0].Outputs[*].OutputValue')
14+
stackOutputs=$(aws cloudformation describe-stacks --region "$AWS_REGION" --stack-name integ-test-fluent-bit-${ARCHITECTURE}-V${BUILD_VERSION} --output text --query 'Stacks[0].Outputs[*].OutputValue')
1515
read -r -a outputArray <<< "$stackOutputs"
1616
export FIREHOSE_STREAM="${outputArray[0]}"
1717
export KINESIS_STREAM="${outputArray[1]}"

0 commit comments

Comments
 (0)