File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## [ 5.18.1] ( https://github.com/terraform-aws-modules/terraform-aws-vpc/compare/v5.18.0...v5.18.1 ) (2025-01-28)
6+
7+
8+ ### Bug Fixes
9+
10+ * Fixed service_region argument in the VPC endpoint module ([ #1162 ] ( https://github.com/terraform-aws-modules/terraform-aws-vpc/issues/1162 ) ) ([ 5415dee] ( https://github.com/terraform-aws-modules/terraform-aws-vpc/commit/5415deebeb608f1e622a336f045c79b08d144f46 ) )
11+
512## [ 5.18.0] ( https://github.com/terraform-aws-modules/terraform-aws-vpc/compare/v5.17.0...v5.18.0 ) (2025-01-27)
613
714
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ data "aws_vpc_endpoint_service" "this" {
1313
1414 service = try (each. value . service , null )
1515 service_name = try (each. value . service_name , null )
16- service_regions = try ([each . value . service_region ], null )
16+ service_regions = try (coalescelist ( compact ( [each . value . service_region ])) , null )
1717
1818 filter {
1919 name = " service-type"
You can’t perform that action at this time.
0 commit comments