We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9715390 commit 5ab6eadCopy full SHA for 5ab6ead
.github/workflows/terraform.yml
@@ -51,7 +51,7 @@ jobs:
51
- name: Terraform Plan for Dev
52
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
53
id: terraform-plan-dev
54
- run: terraform plan -var-file="./envs/dev/terraform.tfvars" -out=dev.plan
+ run: cd infra && terraform plan -var-file="./envs/dev/terraform.tfvars" -out=dev.plan
55
56
- name: Terraform Apply for Dev
57
id: terraform-apply-dev
@@ -67,7 +67,7 @@ jobs:
67
68
- name: Terraform Plan for Prod
69
id: terraform-plan-prod
70
- run: terraform plan -var-file="./envs/prod/terraform.tfvars" -out=prod.plan
+ run: cd infra && terraform plan -var-file="./envs/prod/terraform.tfvars" -out=prod.plan
71
72
- name: Terraform Apply for Prod
73
id: terraform-apply-prod
0 commit comments