Created
September 15, 2022 21:21
-
-
Save KyMidd/6aa748642460f258c699fd6b79764de7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: AWS Login | |
| uses: aws-actions/configure-aws-credentials@v1 | |
| with: | |
| role-to-assume: ${{ env.aws_assume_role_arn }} | |
| aws-region: ${{ env.region }} | |
| - uses: hashicorp/setup-terraform@v2.0.0 | |
| with: | |
| terraform_version: ${{ env.tf_version }} | |
| # Required in order to download TF providers since we don't cache those due to size | |
| - name: Terraform Init | |
| id: init | |
| run: terraform init -input=false | |
| - name: Terraform Apply | |
| id: apply | |
| run: terraform apply -input=false tf.plan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment