Skip to content

Commit 01bb025

Browse files
committed
add missing secrets
1 parent 0b9b975 commit 01bb025

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/delivery.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ jobs:
1818
- name: Configure AWS credentials for us-east-2
1919
uses: aws-actions/configure-aws-credentials@v1
2020
with:
21-
role-to-assume: arn:aws:iam::${{ vars.CD_AWS_ACCOUNT_ID }}:role/github-oidc-humangraphics-role
21+
role-to-assume: arn:aws:iam::${{ secrets.CD_AWS_ACCOUNT_ID }}:role/github-oidc-humangraphics-role
2222
aws-region: us-east-2
2323
- name: Build our layer
2424
run: make
2525
- name: Prepare CloudFormation stack
2626
run: aws cloudformation package --template-file cfn-deploy.yml --s3-bucket "$S3_BUCKET" --s3-prefix artifacts/backend-lambda-layer >cfn-deploy.packaged.yml
2727
env:
28-
S3_BUCKET: ${{ vars.S3_BUCKET }}
28+
S3_BUCKET: ${{ secrets.S3_BUCKET }}
2929
- name: Deploy CloudFormation stack
3030
uses: aws-actions/aws-cloudformation-github-deploy@v1
3131
env:
32-
AWS_ACCOUNT_ID: ${{ vars.CD_AWS_ACCOUNT_ID }}
32+
AWS_ACCOUNT_ID: ${{ secrets.CD_AWS_ACCOUNT_ID }}
3333
with:
3434
name: humangraphics-backend-lambda-layer
3535
template: cfn-deploy.packaged.yml

0 commit comments

Comments
 (0)