Skip to content

Commit 8114a1e

Browse files
committed
Hard code AZ count.
hashicorp/terraform#1497
1 parent bdb6330 commit 8114a1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ module "ami" {
4343
}
4444

4545
resource "aws_instance" "nat" {
46-
count = "${toint(module.vpc.az_count)}"
46+
count = "2" // FIXME ${toint(module.vpc.az_count)}"
4747
ami = "${module.ami.ami_id}"
4848
instance_type = "m3.large"
4949
source_dest_check = false

0 commit comments

Comments
 (0)