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 f94c800 commit 1305459Copy full SHA for 1305459
.github/workflows/cicd-3-deploy.yaml
@@ -84,9 +84,13 @@ jobs:
84
# env:
85
# TF_LOG: "INFO" #INFO/DEBUG
86
run: |
87
- TF_ENV=dev make terraform-init
88
- TF_ENV=dev make terraform-plan opts="-out=terraform.tfplan"
89
- TF_ENV=dev make terraform-apply opts="-auto-approve terraform.tfplan"
+# TF_ENV=dev make terraform-init
+# TF_ENV=dev make terraform-plan opts="-out=terraform.tfplan"
+# TF_ENV=dev make terraform-apply opts="-auto-approve terraform.tfplan"
90
+ cd infrastructure/environments/dev
91
+ terraform init
92
+ terraform plan -out=terraform.tfplan
93
+ terraform apply -auto-approve terraform.tfplan
94
# TODO: More jobs or/and steps here
95
# success:
96
# name: "Success notification"
0 commit comments