Skip to content

Commit

Permalink
chore: bumping the version of the vpc and the endpoints module
Browse files Browse the repository at this point in the history
  • Loading branch information
gambol99 committed Apr 23, 2024
1 parent 63e7e16 commit 1bb4679
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions endpoints.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
}
}
}

0 comments on commit 1bb4679

Please sign in to comment.