From 5fdd25f96cf5485c598a283b0bddd3410625545a Mon Sep 17 00:00:00 2001 From: John Chrostek Date: Wed, 8 Apr 2026 09:12:31 -0400 Subject: [PATCH] fix: add --import-existing-resources to CDK deploy in integration-suite job --- .gitlab/templates/pipeline.yaml.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab/templates/pipeline.yaml.tpl b/.gitlab/templates/pipeline.yaml.tpl index 55c51759b..2e37246b5 100644 --- a/.gitlab/templates/pipeline.yaml.tpl +++ b/.gitlab/templates/pipeline.yaml.tpl @@ -508,7 +508,7 @@ integration-suite: - export CDK_DEFAULT_ACCOUNT=$(aws sts get-caller-identity --query Account --output text) - export CDK_DEFAULT_REGION=us-east-1 - npm run build - - npx cdk deploy "integ-${IDENTIFIER}-${TEST_SUITE}" --require-approval never + - npx cdk deploy "integ-${IDENTIFIER}-${TEST_SUITE}" --require-approval never --import-existing-resources - echo "Running ${TEST_SUITE} integration tests with identifier ${IDENTIFIER}..." - export TEST_SUITE=${TEST_SUITE} - npx jest tests/${TEST_SUITE}.test.ts