Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump appvia/network/aws from 0.3.3 to 0.3.4 #73

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dns.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

## Provision an egress vpc if required
module "dns_vpc" {

Check failure on line 3 in dns.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"

Check failure on line 3 in dns.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.enable_dns ? 1 : 0
source = "appvia/network/aws"
version = "0.3.3"
version = "0.3.4"

availability_zones = var.services.dns.network.availability_zones
enable_default_route_table_association = local.enable_default_route_table_association
Expand All @@ -20,7 +20,7 @@
}

## Provision if required the shared private dns
module "dns" {

Check failure on line 23 in dns.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"

Check failure on line 23 in dns.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.enable_dns ? 1 : 0
source = "appvia/dns/aws"
version = "1.2.3"
Expand Down
2 changes: 1 addition & 1 deletion endpoints.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

## Provision an egress vpc if required
module "endpoints_vpc" {

Check failure on line 3 in endpoints.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"

Check failure on line 3 in endpoints.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.enable_endpoints ? 1 : 0
source = "appvia/network/aws"
version = "0.3.3"
version = "0.3.4"

availability_zones = var.services.endpoints.network.availability_zones
enable_default_route_table_association = local.enable_default_route_table_association
Expand All @@ -20,7 +20,7 @@
}

## Provision if required the shared private endpoints
module "endpoints" {

Check failure on line 23 in endpoints.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"

Check failure on line 23 in endpoints.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.enable_endpoints ? 1 : 0
source = "appvia/private-endpoints/aws"
version = "0.2.10"
Expand Down
2 changes: 1 addition & 1 deletion inspection_all.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
#

## Provision the inspection vpcs if required
module "inspection_vpc" {

Check failure on line 10 in inspection_all.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"

Check failure on line 10 in inspection_all.tf

View workflow job for this annotation

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.enable_inspection_all ? 1 : 0
source = "appvia/network/aws"
version = "0.3.3"
version = "0.3.4"

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.3"
version = "0.3.4"

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.3"
version = "0.3.4"

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