Skip to content

Commit 645fbcd

Browse files
committed
replace local by var ref
1 parent 5cec57c commit 645fbcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/prebuilt/vpc.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module "vpc" {
55
name = "vpc-${local.environment}"
66
cidr = "10.0.0.0/16"
77

8-
azs = ["${local.aws_region}a", "${local.aws_region}b", "${local.aws_region}c"]
8+
azs = ["${var.aws_region}a", "${var.aws_region}b", "${var.aws_region}c"]
99
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
1010
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
1111

0 commit comments

Comments
 (0)