Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Oct 17, 2022
1 parent 35e1b26 commit 07304f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 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(string)<br> gateway_self = string<br> gateway_peer = string<br> route_tables_self = map(string)<br> route_tables_peer = map(string)<br> map_route_tables_self = map(string)<br> map_route_tables_peer = map(string)<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(string)<br> gateway_self = string<br> gateway_peer = string<br> route_tables_self = map(object())<br> route_tables_peer = map(object())<br> map_route_tables_self = map(map(string))<br> map_route_tables_peer = map(map(string))<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
8 changes: 4 additions & 4 deletions vpc-transit-gateway-association/variables.data_input.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
})
}

0 comments on commit 07304f7

Please sign in to comment.