Closed analytically closed 7 years ago
@analytically I think you can still use the module as is with aws_availability_zones
. This module requires a list of azs
to create subnets. You can supply that list to the module, here is an example.
module "vpc" {
...
azs = ["${data.aws_availability_zones.available.names}"]
...
}
I think the current setup makes the module more flexible providing more control on how many subnets you would like to create.
Thanks!
See https://github.com/hashicorp/terraform/pull/11482