Skip to content
Merged
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/central_account/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ locals {
# Log archive bucket and access logging
#
module "log_archive_bucket" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.11.0"
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.11.4"
bucket_name = var.log_archive_bucket_name
billing_tag_value = var.billing_tag_value
kms_key_arn = aws_kms_key.log_archive_encrypt.arn
Expand All @@ -37,7 +37,7 @@ module "log_archive_bucket" {
}

module "log_archive_access_bucket" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v10.11.0"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v10.11.4"
bucket_name = "${var.log_archive_bucket_name}-access"
billing_tag_value = var.billing_tag_value
versioning_status = "Disabled"
Expand Down
4 changes: 2 additions & 2 deletions terragrunt/aws/satellite_bucket/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Satellite bucket and access logging
#
module "satellite_bucket" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.11.0"
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.11.4"
bucket_name = var.satellite_bucket_name
billing_tag_value = var.billing_tag_value

Expand Down Expand Up @@ -52,7 +52,7 @@ module "satellite_bucket" {
}

module "satellite_access_bucket" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v10.11.0"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v10.11.4"
bucket_name = "${var.satellite_bucket_name}-access"
billing_tag_value = var.billing_tag_value
versioning_status = "Disabled"
Expand Down
Loading