-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Req: Support AZ ID and name on subnet creation #234
Comments
I just landed here looking for how to configure AZ ID on this module. Sad to see it isn't available. It's a must for cross-account compatibility... |
I'm going to take a crack at this, ill update. |
Duplicate of #350 |
I have just released v2.25.0 (after #370 has been merged) and you can now specify AZ IDs or AZ names in module "vpc" {
source = "terraform-aws-modules/vpc/aws"
# Option 1 - Using AZ names
azs = ["eu-west-1a", "eu-west-1b"]
# Option 2 - Using AZ ids
azs = ["euw1-az1", "euw1-az2"]
# Option 3 - Using mixed values (names and ids)
azs = ["eu-west-1a", "euw1-az2"]
} Closing this issue. |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
We are currently using this module for VPC creation. In order to support alignment across a given set of accounts for an upcoming project, we would like to have the ability to set the Availability Zone ID rather than the name when creating a subnet.
https://www.terraform.io/docs/providers/aws/r/subnet.html#argument-reference
Currently the module only supports name (availability_zone argument) when creating a subnet.
Regards,
Ryan
The text was updated successfully, but these errors were encountered: