Skip to content

Commit 9467b6e

Browse files
committed
Support for cross region VPC endpoints
1 parent b94f8ce commit 9467b6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/vpc-endpoints/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ module "endpoints" {
5656
| Name | Version |
5757
|------|---------|
5858
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0 |
59-
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.46 |
59+
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.83 |
6060

6161
## Providers
6262

6363
| Name | Version |
6464
|------|---------|
65-
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.46 |
65+
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 5.83 |
6666

6767
## Modules
6868

modules/vpc-endpoints/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ locals {
1111
data "aws_vpc_endpoint_service" "this" {
1212
for_each = local.endpoints
1313

14-
service = try(each.value.service, null)
15-
service_name = try(each.value.service_name, null)
14+
service = try(each.value.service, null)
15+
service_name = try(each.value.service_name, null)
1616
service_regions = try([each.value.service_region], null)
1717

1818
filter {

0 commit comments

Comments
 (0)