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 5cec57c commit 645fbcdCopy full SHA for 645fbcd
examples/prebuilt/vpc.tf
@@ -5,7 +5,7 @@ module "vpc" {
5
name = "vpc-${local.environment}"
6
cidr = "10.0.0.0/16"
7
8
- azs = ["${local.aws_region}a", "${local.aws_region}b", "${local.aws_region}c"]
+ azs = ["${var.aws_region}a", "${var.aws_region}b", "${var.aws_region}c"]
9
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
10
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
11
0 commit comments