Skip to content

Commit faa0e02

Browse files
committed
fix: update AWS region from us-east-1 to us-west-2 for deployment
1 parent b25c486 commit faa0e02

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/validate-and-deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
env:
1111
NODE_VERSION: '18'
1212
PYTHON_VERSION: '3.9'
13-
AWS_REGION: 'us-east-1'
13+
AWS_REGION: 'us-west-2'
1414

1515
jobs:
1616
validate-structure:
@@ -188,7 +188,7 @@ jobs:
188188
with:
189189
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
190190
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
191-
aws-region: us-east-1
191+
aws-region: us-west-2
192192

193193
- name: 📦 Install dependencies
194194
run: |
@@ -224,7 +224,7 @@ jobs:
224224
python3 iam_policy_validator_cli.py \
225225
--file cdk-template.json \
226226
--template \
227-
--region us-east-1 \
227+
--region us-west-2 \
228228
--fail-on-findings || echo "⚠️ Policy validation completed with findings"
229229
else
230230
echo "ℹ️ IAM policy validator CLI not found, skipping detailed validation"
@@ -247,7 +247,7 @@ jobs:
247247
echo "📊 Retrieving deployment outputs..."
248248
aws cloudformation describe-stacks \
249249
--stack-name TaskManagerStack \
250-
--region us-east-1 \
250+
--region us-west-2 \
251251
--query 'Stacks[0].Outputs[*].[OutputKey,OutputValue]' \
252252
--output table || echo "ℹ️ No stack outputs available yet"
253253

0 commit comments

Comments
 (0)