Skip to content

Commit 12417c5

Browse files
committed
Fix env variables
1 parent 9295b8b commit 12417c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

terraform/common/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
init:
2-
terraform init -backend-config="bucket=${REMOTE_BACKEND}"
2+
terraform init -backend-config="bucket=${TF_VAR_remote_backend}"
33

44
fmt:
55
terraform fmt -recursive -diff ../

terraform/dev/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
init:
2-
terraform init -backend-config="bucket=${REMOTE_BACKEND}"
2+
terraform init -backend-config="bucket=${TF_VAR_remote_backend}"
33

44
fmt:
55
terraform fmt -recursive -diff ../

terraform/prod/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
init:
2-
terraform init -backend-config="bucket=${REMOTE_BACKEND}"
2+
terraform init -backend-config="bucket=${TF_VAR_remote_backend}"
33

44
fmt:
55
terraform fmt -recursive -diff ../

terraform/stg/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
init:
2-
terraform init -backend-config="bucket=${REMOTE_BACKEND}"
2+
terraform init -backend-config="bucket=${TF_VAR_remote_backend}"
33

44
fmt:
55
terraform fmt -recursive -diff ../

0 commit comments

Comments
 (0)