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 github.com/cds-snc/terraform-modules to v10 #516

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
4 changes: 2 additions & 2 deletions terragrunt/aws/base/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ locals {
}

module "log_bucket" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v8.0.0"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v10.2.2"
bucket_name = "${local.name_prefix}-logs"
billing_tag_value = var.billing_tag_value
}

module "athena" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v8.0.0"
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.2.2"
bucket_name = local.athena_name
lifecycle_rule = [{
id = "expire"
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/aws/base/vpc.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "vpc" {
source = "github.com/cds-snc/terraform-modules//vpc?ref=v8.0.0"
source = "github.com/cds-snc/terraform-modules//vpc?ref=v10.2.2"
name = "${var.product_name}-${var.tool_name}"

high_availability = true
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/aws/cloud_asset_inventory/s3.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "cloudquery_s3_bucket" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v8.0.0"
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.2.2"
bucket_name = local.cloudquery_name

billing_tag_key = var.billing_tag_key
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/aws/cloud_asset_inventory/sentinel_forwarder.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "sentinel_forwarder" {
source = "github.com/cds-snc/terraform-modules//sentinel_forwarder?ref=v9.6.8"
source = "github.com/cds-snc/terraform-modules//sentinel_forwarder?ref=v10.2.2"

function_name = "cloudquery-sentinel-forwarder"
customer_id = var.customer_id
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/aws/csp_violation_report_service/lambda.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "csp_reports" {
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.6.8"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v10.2.2"
name = var.tool_name
ecr_arn = aws_ecr_repository.csp_reports.arn
image_uri = "${aws_ecr_repository.csp_reports.repository_url}:latest"
Expand Down
2 changes: 1 addition & 1 deletion terragrunt/aws/csp_violation_report_service/sentinel.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "sentinel_forwarder" {
source = "github.com/cds-snc/terraform-modules//sentinel_forwarder?ref=v9.6.8"
source = "github.com/cds-snc/terraform-modules//sentinel_forwarder?ref=v10.2.2"
function_name = "${var.tool_name}_sentinel"
billing_tag_value = var.tool_name

Expand Down
Loading