Skip to content

Commit

Permalink
Do aws config in CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirch committed Aug 13, 2023
1 parent 39d7256 commit abb03cf
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ jobs:
override: true
- name: Build Lambda functions
run: python3 ./scripts/build.py
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Plan Terraform
run: terraform -chdir=infrastructure init
- name: Plan Terraform
Expand Down

0 comments on commit abb03cf

Please sign in to comment.