I want to try and implement this repo in my terraform plan.
I want to have it operate across all availability zones and am trying to work out how to make sure that is the case (there isn't a list of all of them anywhere I can find?)
https://github.com/cloudposse/terraform-aws-dynamic-subnets
based off of this,
https://radix.ai/blog/2020/12/swiftly-writing-and-deploying-apis-to-stay-agile/
Currently my subnets look like this,
module "subnets" {
source = "git::https://github.com/cloudposse/terraform-aws-dynamic-subnets.git?ref=tags/1.0.0"
....
availability_zones = ["us-east-1a", "us-east-1b","us-west-2","us-west-1","eu-west-1","eu-central-1","ap-northeast-1","ap-northeast-2","ap-southeast-1","ap-southeast-2","ap-south-1","sa-east-1","ap-south-1"]
}
Thanks in advance,