diff --git a/vpc-transit-gateway-association/README.md b/vpc-transit-gateway-association/README.md index 947b83c..cdccdd6 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()
gateway_self = string
gateway_peer = string
route_tables_self = map()
route_tables_peer = map()
map_route_tables_self = map()
map_route_tables_peer = map()
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(any)
gateway_self = string
gateway_peer = string
route_tables_self = map(any)
route_tables_peer = map(any)
map_route_tables_self = map(any)
map_route_tables_peer = map(any)
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 0a319d8..a27009a 100644
--- a/vpc-transit-gateway-association/variables.data_input.tf
+++ b/vpc-transit-gateway-association/variables.data_input.tf
@@ -1,13 +1,13 @@
variable "data_input" {
description = "Map of data generated by vpc-transit-gateway-association-data"
type = object({
- availablity_zone = map()
+ availablity_zone = map(any)
gateway_self = string
gateway_peer = string
- route_tables_self = map()
- route_tables_peer = map()
- map_route_tables_self = map()
- map_route_tables_peer = map()
+ route_tables_self = map(any)
+ route_tables_peer = map(any)
+ map_route_tables_self = map(any)
+ map_route_tables_peer = map(any)
prefix_list_id_ipv4 = string
})
}