File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -11,8 +11,9 @@ locals {
1111data "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 )
16+ service_regions = try ([each . value . service_region ], null )
1617
1718 filter {
1819 name = " service-type"
@@ -25,6 +26,7 @@ resource "aws_vpc_endpoint" "this" {
2526
2627 vpc_id = var. vpc_id
2728 service_name = try (each. value . service_endpoint , data. aws_vpc_endpoint_service . this [each . key ]. service_name )
29+ service_region = try (each. value . service_region , null )
2830 vpc_endpoint_type = try (each. value . service_type , " Interface" )
2931 auto_accept = try (each. value . auto_accept , null )
3032
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
44 required_providers {
55 aws = {
66 source = " hashicorp/aws"
7- version = " >= 5.46 "
7+ version = " >= 5.83 "
88 }
99 }
1010}
You can’t perform that action at this time.
0 commit comments