Skip to content

Commit

Permalink
chore(deps): bump appvia/network/aws from 0.3.1 to 0.3.2 (#53)
Browse files Browse the repository at this point in the history
Bumps [appvia/network/aws](https://github.com/appvia/terraform-aws-network) from 0.3.1 to 0.3.2.
- [Release notes](https://github.com/appvia/terraform-aws-network/releases)
- [Commits](appvia/terraform-aws-network@v0.3.1...v0.3.2)

---
updated-dependencies:
- dependency-name: appvia/network/aws
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 10, 2024
1 parent 590f67d commit fc57c67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module "dns_vpc" {
count = local.enable_dns ? 1 : 0
source = "appvia/network/aws"
version = "0.3.1"
version = "0.3.2"

availability_zones = var.services.dns.network.availability_zones
enable_default_route_table_association = local.enable_default_route_table_association
Expand Down
2 changes: 1 addition & 1 deletion 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.3.1"
version = "0.3.2"

availability_zones = var.services.endpoints.network.availability_zones
enable_default_route_table_association = local.enable_default_route_table_association
Expand Down
2 changes: 1 addition & 1 deletion inspection_all.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
module "inspection_vpc" {
count = local.enable_inspection_all ? 1 : 0
source = "appvia/network/aws"
version = "0.3.1"
version = "0.3.2"

availability_zones = var.connectivity_config.inspection_with_all.network.availability_zones
enable_default_route_table_association = false
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "tgw" {
module "egress_vpc" {
count = local.enable_egress ? 1 : 0
source = "appvia/network/aws"
version = "0.3.1"
version = "0.3.2"

availability_zones = var.services.egress.network.availability_zones
enable_default_route_table_association = local.enable_default_route_table_association
Expand All @@ -52,7 +52,7 @@ module "egress_vpc" {
module "ingress_vpc" {
count = local.enable_ingress ? 1 : 0
source = "appvia/network/aws"
version = "0.3.1"
version = "0.3.2"

availability_zones = var.services.ingress.network.availability_zones
enable_default_route_table_association = local.enable_default_route_table_association
Expand Down

0 comments on commit fc57c67

Please sign in to comment.