File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -252,6 +252,7 @@ Please see our [developer documentation](https://github.com/aws-ia/terraform-aws
252
252
253
253
| Name | Description |
254
254
| ------| -------------|
255
+ | <a name =" output_azs " ></a > [ azs] ( #output\_ azs ) | List of AZs where subnets are created. |
255
256
| <a name =" output_nat_gateway_attributes_by_az " ></a > [ nat\_ gateway\_ attributes\_ by\_ az] ( #output\_ nat\_ gateway\_ attributes\_ by\_ az ) | Map of nat gateway resource attributes by AZ.<br ><br >Example:<pre >nat_gateway_attributes_by_az = {<br > "us-east-1a" = {<br > "allocation_id" = "eipalloc-0e8b20303eea88b13"<br > "connectivity_type" = "public"<br > "id" = "nat-0fde39f9550f4abb5"<br > "network_interface_id" = "eni-0d422727088bf9a86"<br > "private_ip" = "10.0.3.40"<br > "public_ip" = <><br > "subnet_id" = "subnet-0f11c92e439c8ab4a"<br > "tags" = tomap({<br > "Name" = "nat-my-public-us-east-1a"<br > })<br > "tags_all" = tomap({<br > "Name" = "nat-my-public-us-east-1a"<br > })<br > }<br > "us-east-1b" = { ... }<br >}</pre > |
256
257
| <a name =" output_private_subnet_attributes_by_az " ></a > [ private\_ subnet\_ attributes\_ by\_ az] ( #output\_ private\_ subnet\_ attributes\_ by\_ az ) | Map of all private subnets containing their attributes.<br ><br >Example:<pre >private_subnet_attributes = {<br > "private/us-east-1a" = {<br > "arn" = "arn:aws:ec2:us-east-1:<>: subnet /subnet-04a86315c4839b519"<br > "assign_ipv6_address_on_creation" = false<br > ...<br > <all attributes of subnet: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/subnet#attributes-reference> <br > }<br > "us-east-1b" = {...)<br >}</pre > |
257
258
| <a name =" output_public_subnet_attributes_by_az " ></a > [ public\_ subnet\_ attributes\_ by\_ az] ( #output\_ public\_ subnet\_ attributes\_ by\_ az ) | Map of all public subnets containing their attributes.<br ><br >Example:<pre >public_subnet_attributes = {<br > "us-east-1a" = {<br > "arn" = "arn:aws:ec2:us-east-1:<>: subnet /subnet-04a86315c4839b519"<br > "assign_ipv6_address_on_creation" = false<br > ...<br > <all attributes of subnet: https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/subnet#attributes-reference> <br > }<br > "us-east-1b" = {...)<br >}</pre > |
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ output "vpc_attributes" {
3
3
value = local. vpc
4
4
}
5
5
6
+ output "azs" {
7
+ description = " List of AZs where subnets are created."
8
+ value = local. azs
9
+ }
10
+
6
11
output "transit_gateway_attachment_id" {
7
12
description = " Transit gateway attachment id."
8
13
value = try (aws_ec2_transit_gateway_vpc_attachment. tgw [0 ]. id , null )
You can’t perform that action at this time.
0 commit comments