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 #48

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 main.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

## Provision the network is required
module "vpc" {

Check failure on line 3 in main.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_vpc_creation ? 1 : 0
source = "appvia/network/aws"
version = "0.3.3"
version = "0.3.4"

availability_zones = var.network.availability_zones
enable_default_route_table_association = var.network.enable_default_route_table_association
Expand All @@ -21,7 +21,7 @@

## If we are provisioning the resolvers we need to create a security group to allow the dns traffic
# tfsec:ignore:aws-ec2-no-public-egress-sgr
module "dns_security_group" {

Check failure on line 24 in main.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"
source = "terraform-aws-modules/security-group/aws"
version = "5.3.0"

Expand Down
Loading