File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,18 @@ jobs:
18
18
- name : Configure AWS credentials for us-east-2
19
19
uses : aws-actions/configure-aws-credentials@v1
20
20
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
22
22
aws-region : us-east-2
23
23
- name : Build our layer
24
24
run : make
25
25
- name : Prepare CloudFormation stack
26
26
run : aws cloudformation package --template-file cfn-deploy.yml --s3-bucket "$S3_BUCKET" --s3-prefix artifacts/backend-lambda-layer >cfn-deploy.packaged.yml
27
27
env :
28
- S3_BUCKET : ${{ vars .S3_BUCKET }}
28
+ S3_BUCKET : ${{ secrets .S3_BUCKET }}
29
29
- name : Deploy CloudFormation stack
30
30
uses : aws-actions/aws-cloudformation-github-deploy@v1
31
31
env :
32
- AWS_ACCOUNT_ID : ${{ vars .CD_AWS_ACCOUNT_ID }}
32
+ AWS_ACCOUNT_ID : ${{ secrets .CD_AWS_ACCOUNT_ID }}
33
33
with :
34
34
name : humangraphics-backend-lambda-layer
35
35
template : cfn-deploy.packaged.yml
You can’t perform that action at this time.
0 commit comments