From 07304f72ba752aaa32bb351f7c0f681c75fd2671 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 17 Oct 2022 09:34:09 -0400 Subject: [PATCH] update --- vpc-transit-gateway-association/README.md | 2 +- vpc-transit-gateway-association/variables.data_input.tf | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/vpc-transit-gateway-association/README.md b/vpc-transit-gateway-association/README.md index 82acf9d..b87388e 100644 --- a/vpc-transit-gateway-association/README.md +++ b/vpc-transit-gateway-association/README.md @@ -72,7 +72,7 @@ This sets up the necessary transit gateway configuration for attaching a VPC wit | [account\_id](#input\_account\_id) | AWS Account ID (default: will pull from current user) | `string` | `""` | no | | [availability\_zones](#input\_availability\_zones) | AWS Availability Zones to use (by default will use all available) | `list(string)` | `[]` | no | | [create](#input\_create) | Flag to indicate whether to create the resources or not (default: true) | `bool` | `true` | no | -| [data\_input](#input\_data\_input) | Map of data generated by vpc-transit-gateway-association-data |
object({
availablity_zone = map(string)
gateway_self = string
gateway_peer = string
route_tables_self = map(string)
route_tables_peer = map(string)
map_route_tables_self = map(string)
map_route_tables_peer = map(string)
prefix_list_id_ipv4 = string
})
| n/a | yes | +| [data\_input](#input\_data\_input) | Map of data generated by vpc-transit-gateway-association-data |
object({
availablity_zone = map(string)
gateway_self = string
gateway_peer = string
route_tables_self = map(object())
route_tables_peer = map(object())
map_route_tables_self = map(map(string))
map_route_tables_peer = map(map(string))
prefix_list_id_ipv4 = string
})
| n/a | yes | | [network\_account\_profile](#input\_network\_account\_profile) | AWS profile of the source account sharing the VPC resources | `string` | n/a | yes | | [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component. This should be used primarily for common infrastructure things | `map(string)` | `{}` | no | | [private\_subnets\_ids](#input\_private\_subnets\_ids) | List of private subnet objects including: subnet, label, availability\_zone, id |
list(object({
subnet = string
label = string
availability_zone = string
id = string
}))
| `[]` | no | diff --git a/vpc-transit-gateway-association/variables.data_input.tf b/vpc-transit-gateway-association/variables.data_input.tf index 893654a..425b9e3 100644 --- a/vpc-transit-gateway-association/variables.data_input.tf +++ b/vpc-transit-gateway-association/variables.data_input.tf @@ -4,10 +4,10 @@ variable "data_input" { availablity_zone = map(string) gateway_self = string gateway_peer = string - route_tables_self = map(string) - route_tables_peer = map(string) - map_route_tables_self = map(string) - map_route_tables_peer = map(string) + route_tables_self = map(object()) + route_tables_peer = map(object()) + map_route_tables_self = map(map(string)) + map_route_tables_peer = map(map(string)) prefix_list_id_ipv4 = string }) }