Is there a way to change the VPC availability zone...
# fleet
e
Is there a way to change the VPC availability zones from
["us-east-2a", "us-east-2b", "us-east-2c"]
to
["us-east-1a", "us-east-1b", "us-east-1c"]
? I tried doing this in my fleet.tf
Copy code
module "vpc" {
  source  = "terraform-aws-modules/vpc/aws"
  version = "5.1.2"
  azs   = var.region == "us-east-1" ? ["us-east-1a", "us-east-1b", "us-east-1c"] : ["us-east-2a", "us-east-2b", "us-east-2c"]
}
... but it doesn't seem to do anything.