diff --git a/README.md b/README.md index 7c4f590..d61b19a 100644 --- a/README.md +++ b/README.md @@ -272,8 +272,8 @@ The `terraform-docs` utility is used to generate this README. Follow the below s | Name | Source | Version | |------|--------|---------| | [egress\_vpc](#module\_egress\_vpc) | appvia/network/aws | 0.2.1 | -| [endpoints](#module\_endpoints) | appvia/private-endpoints/aws | 0.1.4 | -| [endpoints\_vpc](#module\_endpoints\_vpc) | appvia/network/aws | 0.2.1 | +| [endpoints](#module\_endpoints) | appvia/private-endpoints/aws | 0.2.1 | +| [endpoints\_vpc](#module\_endpoints\_vpc) | appvia/network/aws | 0.3.0 | | [ingress\_vpc](#module\_ingress\_vpc) | appvia/network/aws | 0.2.1 | | [inspection\_vpc](#module\_inspection\_vpc) | appvia/network/aws | 0.2.1 | | [share\_prefixes](#module\_share\_prefixes) | ./modules/prefix_share | n/a | diff --git a/endpoints.tf b/endpoints.tf index 0494b23..fad6be5 100644 --- a/endpoints.tf +++ b/endpoints.tf @@ -3,7 +3,7 @@ module "endpoints_vpc" { count = local.enable_endpoints ? 1 : 0 source = "appvia/network/aws" - version = "0.2.1" + version = "0.3.0" availability_zones = var.connectivity_config.endpoints.network.availability_zones enable_transit_gateway = true @@ -19,7 +19,7 @@ module "endpoints_vpc" { module "endpoints" { count = local.enable_endpoints ? 1 : 0 source = "appvia/private-endpoints/aws" - version = "0.1.4" + version = "0.2.1" name = var.connectivity_config.endpoints.network.name endpoints = var.connectivity_config.endpoints.services @@ -31,13 +31,9 @@ module "endpoints" { } resolvers = { - inbound = { - create = true - ip_address_offset = 10 - } outbound = { create = true - ip_address_offset = 12 + ip_address_offset = 10 } } }