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

Closed
Closed
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

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
@@ -46,7 +46,7 @@
}

## Provision the security group for the private endpoints
resource "aws_security_group" "this" {

Check failure on line 49 in main.tf

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV2_AWS_5: "Ensure that Security Groups are attached to another resource"
description = "Security group for the private endpoints for the ${var.name} environment"
name = "${var.name}-default"
tags = merge(var.tags, { "Name" = "${var.name}-default" })

Unchanged files with check annotations Beta

#####################################################################################
## Create a client network to test the endpoints
module "spoke" {

Check failure on line 8 in examples/basic/main.tf

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "appvia/network/aws"
version = "0.3.0"
#####################################################################################
## Create a network for the endpoints to reuse
module "network" {

Check failure on line 8 in examples/reuse_vpc/main.tf

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
source = "appvia/network/aws"
version = "0.3.0"
## Provision the security group for the dns resolvers
# tfsec:ignore:aws-ec2-no-public-egress-sgr
module "dns_security_group" {

Check failure on line 4 in resolvers.tf

GitHub Actions / Module Validation / Static Security Analysis - Checkov

CKV_TF_1: "Ensure Terraform module sources use a commit hash"
count = local.enable_dns_security_group ? 1 : 0
source = "terraform-aws-modules/security-group/aws"
version = "5.3.0"