Skip to content

Commit 1305459

Browse files
VIA-102 AS Replace make terraform commands with regular terraform commands
1 parent f94c800 commit 1305459

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/cicd-3-deploy.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,13 @@ jobs:
8484
# env:
8585
# TF_LOG: "INFO" #INFO/DEBUG
8686
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"
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"
90+
cd infrastructure/environments/dev
91+
terraform init
92+
terraform plan -out=terraform.tfplan
93+
terraform apply -auto-approve terraform.tfplan
9094
# TODO: More jobs or/and steps here
9195
# success:
9296
# name: "Success notification"

0 commit comments

Comments
 (0)