From 9056d90f2f8fe10ac543fc09f64165040e1692b1 Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 17 Oct 2022 12:04:38 -0400 Subject: [PATCH] - vpn-transit-gateway - update vpn-config to emit customer_gateway, loopback, single_cgw, and based on single_cgw output correctly - vpc-transit-gateway-association-data **new** - module to get data resources needed as input to vpc-transit-gateway-association - vpc-transit-gateway-association **new** - module to make self vpc attachment and routing for a vpc - makes peer routing setup - can call multiple times for peers for a varient of different peers (though right now, the data module only emits self and peer so it would need adjusting to work in commericial) --- CHANGELOG.md | 11 +++++++++++ common/version.tf | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c0d9ad..668c9b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -196,3 +196,14 @@ - tag-shared-vpc-resources - new submoule to tag vpcs, dhcp options, subnets, route tables, network acls - transit gateways do not support taggging at this time + +* 2.4.1 -- 2022-10-14 + - vpn-transit-gateway + - update vpn-config to emit customer_gateway, loopback, single_cgw, and based on single_cgw output correctly + - vpc-transit-gateway-association-data **new** + - module to get data resources needed as input to vpc-transit-gateway-association + - vpc-transit-gateway-association **new** + - module to make self vpc attachment and routing for a vpc + - makes peer routing setup + - can call multiple times for peers for a varient of different peers (though right now, + the data module only emits self and peer so it would need adjusting to work in commericial) diff --git a/common/version.tf b/common/version.tf index 4a146ad..5dbeb1c 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,5 +1,5 @@ locals { - _module_version = "2.4.0" + _module_version = "2.4.1" _module_names = { "_main_" = "aws-vpc-setup"