From 35b35da25fdb67be4f24618ca84e5d14f29a263b Mon Sep 17 00:00:00 2001 From: Usman Saleem Date: Wed, 5 Mar 2025 11:09:53 +1000 Subject: [PATCH] fix env syntax --- .github/workflows/ci_main.yml | 13 ++++++------- localstack/compose.yml | 1 - 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci_main.yml b/.github/workflows/ci_main.yml index d14b7495b..88d6f6632 100644 --- a/.github/workflows/ci_main.yml +++ b/.github/workflows/ci_main.yml @@ -39,13 +39,12 @@ jobs: with: image-tag: 'latest' env: - SERVICES=secretsmanager,kms - EAGER_SERVICE_LOADING=1 - AWS_ACCESS_KEY_ID=test - AWS_SECRET_ACCESS_KEY=test - AWS_DEFAULT_REGION=us-east-2 - AWS_SESSION_TOKEN=test - AWS_SESSION_TOKEN=test + SERVICES: secretsmanager,kms + EAGER_SERVICE_LOADING: 1 + AWS_ACCESS_KEY_ID: test + AWS_SECRET_ACCESS_KEY: test + AWS_DEFAULT_REGION: us-east-2 + AWS_SESSION_TOKEN: test - name: Build and Test id: build-test diff --git a/localstack/compose.yml b/localstack/compose.yml index 798ec00be..8f557e780 100644 --- a/localstack/compose.yml +++ b/localstack/compose.yml @@ -18,7 +18,6 @@ services: - AWS_SECRET_ACCESS_KEY=test - AWS_DEFAULT_REGION=us-east-2 - AWS_SESSION_TOKEN=test - - AWS_SESSION_TOKEN=test # ready hook script configuration volumes: #- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"