Skip to content

Commit

Permalink
Initialize AWS CLI in Aurora cluster reaper (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanemerson authored Jul 27, 2023
1 parent c63529d commit a640bc3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/aurora-cluster-auto-delete-on-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Configure AWS CLI
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set region ${{ vars.AWS_DEFAULT_REGION }}
- if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak-benchmark'
run: ./provision/aws/rds/aurora_cluster_reaper.sh
env:
Expand Down

0 comments on commit a640bc3

Please sign in to comment.