From fe0963128e4b0b386d4abdc928d42135b64f4be5 Mon Sep 17 00:00:00 2001 From: Nick Davis Date: Wed, 17 Apr 2024 15:51:20 +0100 Subject: [PATCH] try to fix aws auth --- .github/workflows/sub-task-integration-tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/sub-task-integration-tests.yml b/.github/workflows/sub-task-integration-tests.yml index ddfc645c..387aa01d 100644 --- a/.github/workflows/sub-task-integration-tests.yml +++ b/.github/workflows/sub-task-integration-tests.yml @@ -32,6 +32,14 @@ jobs: id: checkout_code uses: actions/checkout@v4.1.1 + - name: Configure AWS Credentials For integration tests + uses: aws-actions/configure-aws-credentials@v4 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_ACTIONS }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ACTIONS }} + aws-region: eu-west-1 + role-session-name: GitHubActionsTerraform + - name: Setup Python uses: actions/setup-python@9a7ac94420f42ee15fc60ab88d0dca4be1fd5757 with: