Skip to content

Commit 5774b2c

Browse files
committed
Add debug logic to troubleshoot creds
1 parent e09eced commit 5774b2c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/cicd.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,19 @@ jobs:
5353
restore-keys: |
5454
${{ runner.os }}-pip-
5555
56+
- name: verify secrets configuration
57+
env:
58+
CLUSTER_ENDPOINT: ${{ secrets.CLUSTER_ENDPOINT }}
59+
DJANGO_ADAPTER_INTEGRATION_TEST_ROLE: ${{ secrets.DJANGO_ADAPTER_INTEGRATION_TEST_ROLE}}
60+
run: |
61+
echo "$CLUSTER_ENDPOINT"
62+
echo "$DJANGO_ADAPTER_INTEGRATION_TEST_ROLE"
63+
5664
- name: Configure AWS Credentials
5765
uses: aws-actions/configure-aws-credentials@v4
5866
with:
5967
role-to-assume: ${{ secrets.DJANGO_ADAPTER_INTEGRATION_TEST_ROLE }}
60-
aws-region: us-east-1
68+
aws-|<D-z>region: us-east-1
6169

6270
- name: Setup venv
6371
run: |

0 commit comments

Comments
 (0)