Skip to content
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
2 changes: 1 addition & 1 deletion terragrunt/aws/api/lambda.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "api" {
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.4.4"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.6.8"
name = "${var.product_name}-api"
ecr_arn = aws_ecr_repository.api.arn
image_uri = "${aws_ecr_repository.api.repository_url}:latest"
Expand Down
4 changes: 2 additions & 2 deletions terragrunt/aws/cdn/s3.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "cdn_origin" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.6.2"
source = "github.com/cds-snc/terraform-modules//S3?ref=v10.9.0"
bucket_name = "${var.product_name}-${var.env}-cdn"
billing_tag_value = var.billing_code

Expand Down Expand Up @@ -38,7 +38,7 @@ data "aws_iam_policy_document" "cloudfront_get_object" {

# Bucket to store cloudfront logs
module "cloudfront_logs" {
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.4.4"
source = "github.com/cds-snc/terraform-modules//S3?ref=v9.6.8"
bucket_name = "${var.product_name}-${var.env}-cdn-logs"
billing_tag_value = var.billing_code

Expand Down
Loading