We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd671c commit 5926edbCopy full SHA for 5926edb
.github/workflows/terraform.yaml
@@ -73,6 +73,7 @@ jobs:
73
74
# 6. Terraform Plan
75
- name: Terraform Plan
76
+ if: github.event_name == 'push' || github.event.inputs.action != 'destroy'
77
run: |
78
terraform plan -out=tfplan \
79
-var='manage_state_bucket=false' \
@@ -82,6 +83,7 @@ jobs:
82
83
84
# 7. Show Plan
85
- name: Show Terraform Plan
86
87
88
terraform show -json tfplan | jq '.resource_changes[] | select(.change.actions != ["no-op"])' | head -100
89
0 commit comments