From 2b6012d24c694f945bce87da84fa694103a36b72 Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 18 Jan 2022 08:57:44 -0500 Subject: [PATCH] add fields to output of vpc-interface-endpoint --- CHANGELOG.md | 4 ++++ common/version.tf | 2 +- vpc-interface-endpoint/README.md | 9 +++++++-- vpc-interface-endpoint/outputs.tf | 2 ++ 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9a3932..08224a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -85,4 +85,8 @@ - peers - add variables enable_nacl_entry_self and enable_nacl_entry_peer to determine whether to create the rule local/remote (default false) +* v1.4.3 -- 20220118 + - vpc-interface-endpoint + - add to output: subnet_ids, network_interface_ids + ## Version 2.x diff --git a/common/version.tf b/common/version.tf index f549198..906d525 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "1.4.2" + _module_version = "1.4.3" } diff --git a/vpc-interface-endpoint/README.md b/vpc-interface-endpoint/README.md index 4982c94..54c9d3e 100644 --- a/vpc-interface-endpoint/README.md +++ b/vpc-interface-endpoint/README.md @@ -29,13 +29,18 @@ module "vpce_secretsmanager" { ## Requirements -No requirements. +| Name | Version | +|------|---------| +| [aws](#requirement\_aws) | >= 3.66.0 | +| [null](#requirement\_null) | >= 3.0 | +| [random](#requirement\_random) | >= 3.0 | +| [template](#requirement\_template) | >= 2.0 | ## Providers | Name | Version | |------|---------| -| [aws](#provider\_aws) | n/a | +| [aws](#provider\_aws) | >= 3.66.0 | ## Modules diff --git a/vpc-interface-endpoint/outputs.tf b/vpc-interface-endpoint/outputs.tf index 8136ad7..1754dbf 100644 --- a/vpc-interface-endpoint/outputs.tf +++ b/vpc-interface-endpoint/outputs.tf @@ -5,5 +5,7 @@ output "vpce_service_info" { "service_name" = aws_vpc_endpoint.interface_endpoint.service_name, "id" : aws_vpc_endpoint.interface_endpoint.id, "dns_entry" : aws_vpc_endpoint.interface_endpoint.dns_entry, + "subnet_ids" : aws_vpc_endpoint.interface_endpoint.subnet_ids, + "network_interface_ids" : aws_vpc_endpoint.interface_endpoint.network_interface_ids, } }