Skip to content

Commit

Permalink
add fields to output of vpc-interface-endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 18, 2022
1 parent 5334cb8 commit 2b6012d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.4.2"
_module_version = "1.4.3"
}
9 changes: 7 additions & 2 deletions vpc-interface-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,18 @@ module "vpce_secretsmanager" {

## Requirements

No requirements.
| Name | Version |
|------|---------|
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3.66.0 |
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.0 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.0 |
| <a name="requirement_template"></a> [template](#requirement\_template) | >= 2.0 |

## Providers

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 3.66.0 |

## Modules

Expand Down
2 changes: 2 additions & 0 deletions vpc-interface-endpoint/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

0 comments on commit 2b6012d

Please sign in to comment.