diff --git a/CHANGELOG.md b/CHANGELOG.md index 59d7256..b40597f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -471,3 +471,8 @@ * 2.11.8 -- 2025-04-11 - vpc-interface-endpoint - add finops_ tagging of network interface if finops_ tags are present in var.tags + +* 2.11.9 -- 2025-05-21 + - vpc-interface-endpoint + - add arn output to vpce_service_info + diff --git a/common/version.tf b/common/version.tf index 0d054e1..8e8bc5e 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,5 +1,5 @@ locals { - _module_version = "2.11.8" + _module_version = "2.11.9" _module_names = { "_main_" = "aws-vpc-setup" diff --git a/vpc-interface-endpoint/outputs.tf b/vpc-interface-endpoint/outputs.tf index 47518e6..3482e55 100644 --- a/vpc-interface-endpoint/outputs.tf +++ b/vpc-interface-endpoint/outputs.tf @@ -6,6 +6,7 @@ output "vpce_service_info" { description = "VPC Interface Endpoint information for service" value = { + "arn" = aws_vpc_endpoint.interface_endpoint.arn, "name" = local.short_service, "service_name" = aws_vpc_endpoint.interface_endpoint.service_name, "id" = aws_vpc_endpoint.interface_endpoint.id,