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): update terraform appvia/private-endpoints/aws to v0.2.11 #76

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 endpoints.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

## 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"
Expand All @@ -20,10 +20,10 @@
}

## 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"
version = "0.2.11"

name = var.services.endpoints.network.name
endpoints = var.services.endpoints.services
Expand Down
Loading