Skip to content

Commit

Permalink
* 2.11.7 -- 2025-02-21
Browse files Browse the repository at this point in the history
  - vpc-transit-gateway-association/self
    - add variables:
      - enable_tgw_attachment (for firewall tables, to not attach the TGW which is only for attachment)
  • Loading branch information
badra001 committed Feb 21, 2025
1 parent 5ee0f38 commit bcfc693
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,3 +461,8 @@
- add variables:
- appliance_mode_support default false (for firewall subnets)
- security_group_referencing_support default true

* 2.11.7 -- 2025-02-21
- vpc-transit-gateway-association/self
- add variables:
- enable_tgw_attachment (for firewall tables, to not attach the TGW which is only for attachment)
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
_module_version = "2.11.6"
_module_version = "2.11.7"
_module_names = {
"_main_" = "aws-vpc-setup"

Expand Down
2 changes: 1 addition & 1 deletion vpc-transit-gateway-association/self/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ module "vpc_tgw_self" {
| <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 |
| <a name="input_propagate_all_route_table_names"></a> [propagate\_all\_route\_table\_names](#input\_propagate\_all\_route\_table\_names) | List of route table names to propagate routes into for every attachment | `list(string)` | <pre>[<br/> "services",<br/> "inter-region"<br/>]</pre> | no |
| <a name="input_route_prefix_list_name"></a> [route\_prefix\_list\_name](#input\_route\_prefix\_list\_name) | Shared prefix list name used for routing to TGW. It is comprised of all of the network CIDR blocks in AWS using TGW. | `string` | `"transit-gateway.prod"` | no |
| <a name="input_route_table_label"></a> [route\_table\_label](#input\_route\_table\_label) | Route table lable for the attachment subnets | `string` | `"attachment"` | no |
| <a name="input_route_table_label"></a> [route\_table\_label](#input\_route\_table\_label) | Route table label for the attachment subnets | `string` | `"attachment"` | no |
| <a name="input_security_group_referencing_support"></a> [security\_group\_referencing\_support](#input\_security\_group\_referencing\_support) | Flag to enable or disable security group referencing cross-TGW on the VPC TGW Attachment | `bool` | `true` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | AWS Tags to apply to appropriate resources (S3, KMS). Do not include safeguard tags here, use the data\_safeguard field for such things. | `map(string)` | `{}` | no |
| <a name="input_transit_gateway_environment"></a> [transit\_gateway\_environment](#input\_transit\_gateway\_environment) | Transit Gateway Environment (aka, VRF) to which to connnect this VPC | `string` | n/a | yes |
Expand Down
2 changes: 1 addition & 1 deletion vpc-transit-gateway-association/self/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ variable "transit_gateway_environment" {
## }

variable "route_table_label" {
description = "Route table lable for the attachment subnets"
description = "Route table label for the attachment subnets"
type = string
default = "attachment"
}
Expand Down

0 comments on commit bcfc693

Please sign in to comment.