Skip to content

Commit f9720b6

Browse files
committed
DOPS-101 Use interpolation for variables
Apparently, using variables without interpolation doesn't work with older terraform versions. In this case, 0.11.7.
1 parent 59441c3 commit f9720b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

terraform/bootstrap/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ terraform {
1010
}
1111

1212
provider "aws" {
13-
region = var.aws_region
13+
region = "${var.aws_region}"
1414
}
1515

1616
module "bootstrap" {
1717
source = "trussworks/bootstrap/aws"
1818

19-
region = var.aws_region
20-
account_alias = var.account_alias
19+
region = "${var.aws_region}"
20+
account_alias = "${var.account_alias}"
2121
dynamodb_table_name = "${var.account_alias}-state-lock"
2222
}
2323

0 commit comments

Comments
 (0)