From 9279ebbbbedf96579218b687d1c20f347be08153 Mon Sep 17 00:00:00 2001 From: Keepers Date: Thu, 15 Dec 2022 12:53:25 -0700 Subject: [PATCH] static aws creds for load test (#1825) ## Type of change - [x] :robot: Test - [x] :computer: CI/Deployment ## Issue(s) * #1775 ## Test Plan - [x] :green_heart: E2E --- .github/workflows/load_test.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/load_test.yml b/.github/workflows/load_test.yml index 9d1b832ff..eb99a88af 100644 --- a/.github/workflows/load_test.yml +++ b/.github/workflows/load_test.yml @@ -26,14 +26,6 @@ jobs: steps: - uses: actions/checkout@v3 - # AWS creds - - name: Configure AWS credentials from Test account - uses: aws-actions/configure-aws-credentials@v1 - with: - role-to-assume: ${{ secrets.AWS_IAM_ROLE }} - role-session-name: integration-testing - aws-region: us-east-1 - - name: Build the otel-daemon run: make build-otel-daemon @@ -55,6 +47,8 @@ jobs: # run the tests - name: Integration Tests env: + AWS_ACCESS_KEY_ID: ${{ secrete.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrete.AWS_ACCESS_KEY_SECRET }} AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}