using example from eks tf module #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Terraform Apply" | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- main | |
paths: | |
- 'terraform/**' | |
- .github/workflows/terraform-apply.yaml | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
apply: | |
runs-on: ubuntu-latest | |
steps: | |
- name: configure aws credentials | |
uses: aws-actions/[email protected] | |
with: | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | |
role-session-name: GitHub_to_AWS_via_FederatedOIDC | |
aws-region: ${{ secrets.AWS_REGION }} | |
- id: install-aws-cli | |
uses: unfor19/install-aws-cli-action@v1 | |
with: | |
version: 2 # default | |
verbose: false # default | |
arch: amd64 # allowed values: amd64, arm64 | |
- name: verify aws profile | |
run: | | |
aws sts get-caller-identity | |
aws configure list | |
- name: install terraform | |
uses: hashicorp/setup-terraform@v2 | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: terraform init | |
run: terraform init | |
working-directory: terraform/environments/prod | |
- name: terraform apply | |
run: terraform apply -auto-approve | |
working-directory: terraform/environments/prod |