From bcfc69369f70a9ca232542afd7ff960725789eec Mon Sep 17 00:00:00 2001 From: badra001 Date: Fri, 21 Feb 2025 10:26:06 -0500 Subject: [PATCH] * 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) --- CHANGELOG.md | 5 +++++ common/version.tf | 2 +- vpc-transit-gateway-association/self/README.md | 2 +- vpc-transit-gateway-association/self/variables.tf | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68fe603..68e0e76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/common/version.tf b/common/version.tf index 6e03495..08f45a4 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,5 +1,5 @@ locals { - _module_version = "2.11.6" + _module_version = "2.11.7" _module_names = { "_main_" = "aws-vpc-setup" diff --git a/vpc-transit-gateway-association/self/README.md b/vpc-transit-gateway-association/self/README.md index 5e5bf9e..5b802f3 100644 --- a/vpc-transit-gateway-association/self/README.md +++ b/vpc-transit-gateway-association/self/README.md @@ -269,7 +269,7 @@ module "vpc_tgw_self" { | [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 | | [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)` |
[
"services",
"inter-region"
]
| no | | [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 | -| [route\_table\_label](#input\_route\_table\_label) | Route table lable for the attachment subnets | `string` | `"attachment"` | no | +| [route\_table\_label](#input\_route\_table\_label) | Route table label for the attachment subnets | `string` | `"attachment"` | no | | [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 | | [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 | | [transit\_gateway\_environment](#input\_transit\_gateway\_environment) | Transit Gateway Environment (aka, VRF) to which to connnect this VPC | `string` | n/a | yes | diff --git a/vpc-transit-gateway-association/self/variables.tf b/vpc-transit-gateway-association/self/variables.tf index 846077d..c6f8e74 100644 --- a/vpc-transit-gateway-association/self/variables.tf +++ b/vpc-transit-gateway-association/self/variables.tf @@ -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" }