Skip to content

Commit 944f64a

Browse files
Update terraform.yml
1 parent 3a1caab commit 944f64a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/terraform.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ jobs:
8585

8686
# Checks that all Terraform configuration files adhere to a canonical format
8787
- name: Terraform Format
88-
run: terraform fmt -check
88+
run: terraform fmt
8989

9090
# Generates an execution plan for Terraform
9191
- name: Terraform Plan
92-
run: terraform plan -input=false
92+
run: terraform plan
9393

9494
# On push to "master", build or change infrastructure according to Terraform configuration files
9595
# Note: It is recommended to set up a required "strict" status check in your repository for "Terraform Cloud". See the documentation on "strict" required status checks for more information: https://help.github.com/en/github/administering-a-repository/types-of-required-status-checks
9696
- name: Terraform Apply
9797
if: github.ref == 'refs/heads/"master"' && github.event_name == 'push'
98-
run: terraform apply -auto-approve -input=false
98+
run: terraform apply -auto-approve

0 commit comments

Comments
 (0)