Skip to content

Commit

Permalink
vpc-interface-endpoint: add vpc-interface-type=Interface filter
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 19, 2022
1 parent ffb2936 commit 774afb1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,8 @@
- vpc-interface-endpoint
- add to output: subnet_ids, network_interface_ids

* v1.4.4 -- 20220119
- vpc-interface-endpoint
- add vpc-interface-type=Interface filter

## 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.3"
_module_version = "1.4.4"
}
4 changes: 4 additions & 0 deletions vpc-interface-endpoint/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ locals {

data "aws_vpc_endpoint_service" "interface_endpoint" {
service = local.service
filter {
name = "vpc-endpoint-type"
values = ["Interface"]
}
}

resource "aws_vpc_endpoint" "interface_endpoint" {
Expand Down

0 comments on commit 774afb1

Please sign in to comment.