File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ module "vpc" {
11
11
source = "aws-ia/vpc/aws"
12
12
version = ">= 1.0.0"
13
13
14
- name = "multi-az-vpc"
14
+ name = "multi-az-vpc"
15
15
cidr_block = "10.0.0.0/20"
16
- az_count = 3
16
+ az_count = 3
17
17
18
18
subnets = {
19
19
public = {
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ module "vpc" {
12
12
source = "aws-ia/vpc/aws"
13
13
version = ">= 1.0.0"
14
14
15
- name = "multi-az-vpc"
15
+ name = "multi-az-vpc"
16
16
cidr_block = "10.0.0.0/20"
17
- az_count = 3
17
+ az_count = 3
18
18
19
19
subnets = {
20
20
public = {
@@ -92,8 +92,8 @@ The above example will cause only creating 2 new subnets in az `c` of the region
92
92
93
93
| Name | Version |
94
94
| ------| ---------|
95
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.73 .0 |
96
- | <a name =" provider_awscc " ></a > [ awscc] ( #provider\_ awscc ) | >= 0.15 .0 |
95
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 4.14 .0 |
96
+ | <a name =" provider_awscc " ></a > [ awscc] ( #provider\_ awscc ) | 0.21 .0 |
97
97
98
98
## Modules
99
99
@@ -161,4 +161,4 @@ The above example will cause only creating 2 new subnets in az `c` of the region
161
161
| <a name =" output_tgw_subnet_attributes_by_az " ></a > [ tgw\_ subnet\_ attributes\_ by\_ az] ( #output\_ tgw\_ subnet\_ attributes\_ by\_ az ) | Map of all transit gateway subnets containing their attributes. |
162
162
| <a name =" output_transit_gateway_attachment_id " ></a > [ transit\_ gateway\_ attachment\_ id] ( #output\_ transit\_ gateway\_ attachment\_ id ) | Transit gateway attachment id. |
163
163
| <a name =" output_vpc_attributes " ></a > [ vpc\_ attributes] ( #output\_ vpc\_ attributes ) | VPC resource attributes. Full output of aws\_ vpc. |
164
- <!-- END_TF_DOCS -->
164
+ <!-- END_TF_DOCS -->
Original file line number Diff line number Diff line change @@ -46,8 +46,9 @@ output "route_table_by_subnet_type" {
46
46
description = " Map of route tables by type => az => route table attributes. Example usage: module.vpc.route_table_by_subnet_type.private.id"
47
47
value = {
48
48
# TODO: omit keys if value is null
49
- " private" = awscc_ec2_route_table.private,
50
- " public" = awscc_ec2_route_table.public
49
+ " private" = awscc_ec2_route_table.private,
50
+ " public" = awscc_ec2_route_table.public
51
+ " transit_gateway" = awscc_ec2_route_table.tgw
51
52
}
52
53
}
53
54
You can’t perform that action at this time.
0 commit comments