File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 43
43
- name : Test environment is configured with AWS credentials from role
44
44
run : |
45
45
aws sts get-caller-identity --query Arn | grep "role/github-actions-configure-aws-credentials-integ-tests" > /dev/null
46
+
47
+ - name : Configure AWS credentials from role again
48
+ uses : aws-actions/configure-aws-credentials@v1
49
+ with :
50
+ aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
51
+ aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
52
+ aws-region : us-east-2
53
+ role-to-assume : github-actions-configure-aws-credentials-integ-tests
54
+ role-duration-seconds : 900
55
+ role-session-name : github-actions-integ-test
56
+ role-external-id : ${{ secrets.INTEG_TEST_ROLE_EXTERNAL_ID }}
57
+
58
+ - name : Test environment is configured with AWS credentials from role
59
+ run : |
60
+ aws sts get-caller-identity --query Arn | grep "role/github-actions-configure-aws-credentials-integ-tests" > /dev/null
You can’t perform that action at this time.
0 commit comments