We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad0b7e7 commit 1c88181Copy full SHA for 1c88181
.github/workflows/terraform.yml
@@ -56,7 +56,7 @@ jobs:
56
- name: Terraform Apply for Dev
57
id: terraform-apply-dev
58
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
59
- run: terraform apply dev.plan
+ run: terraform apply "dev.plan"
60
61
- name: Terraform Create/Select Prod Workspace
62
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
@@ -72,4 +72,4 @@ jobs:
72
- name: Terraform Apply for Prod
73
id: terraform-apply-prod
74
75
- run: terraform apply prod.plan
+ run: terraform apply "prod.plan"
0 commit comments