Skip to content

Commit

Permalink
fix map
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 17, 2022
1 parent 966bbe9 commit bd943bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion vpc-transit-gateway-association/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ This sets up the necessary transit gateway configuration for attaching a VPC wit
| <a name="input_account_id"></a> [account\_id](#input\_account\_id) | AWS Account ID (default: will pull from current user) | `string` | `""` | no |
| <a name="input_availability_zones"></a> [availability\_zones](#input\_availability\_zones) | AWS Availability Zones to use (by default will use all available) | `list(string)` | `[]` | no |
| <a name="input_create"></a> [create](#input\_create) | Flag to indicate whether to create the resources or not (default: true) | `bool` | `true` | no |
| <a name="input_data_input"></a> [data\_input](#input\_data\_input) | Map of data generated by vpc-transit-gateway-association-data | <pre>object({<br> availablity_zone = map()<br> gateway_self = string<br> gateway_peer = string<br> route_tables_self = map()<br> route_tables_peer = map()<br> map_route_tables_self = map()<br> map_route_tables_peer = map()<br> prefix_list_id_ipv4 = string<br> })</pre> | n/a | yes |
| <a name="input_data_input"></a> [data\_input](#input\_data\_input) | Map of data generated by vpc-transit-gateway-association-data | <pre>object({<br> availablity_zone = map(any)<br> gateway_self = string<br> gateway_peer = string<br> route_tables_self = map(any)<br> route_tables_peer = map(any)<br> map_route_tables_self = map(any)<br> map_route_tables_peer = map(any)<br> prefix_list_id_ipv4 = string<br> })</pre> | n/a | yes |
| <a name="input_network_account_profile"></a> [network\_account\_profile](#input\_network\_account\_profile) | AWS profile of the source account sharing the VPC resources | `string` | n/a | yes |
| <a name="input_override_prefixes"></a> [override\_prefixes](#input\_override\_prefixes) | Override built-in prefixes by component. This should be used primarily for common infrastructure things | `map(string)` | `{}` | no |
| <a name="input_private_subnets_ids"></a> [private\_subnets\_ids](#input\_private\_subnets\_ids) | List of private subnet objects including: subnet, label, availability\_zone, id | <pre>list(object({<br> subnet = string<br> label = string<br> availability_zone = string<br> id = string<br> }))</pre> | `[]` | no |
Expand Down
10 changes: 5 additions & 5 deletions vpc-transit-gateway-association/variables.data_input.tf
Original file line number Diff line number Diff line change
@@ -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
})
}

0 comments on commit bd943bf

Please sign in to comment.