Skip to content

Commit

Permalink
chore(deps): update all minor dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 15, 2024
1 parent 155c585 commit ffc38bc
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions aws/common/s3.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "aws_s3_bucket_public_access_block" "csv_bucket" {
}

module "csv_bucket_logs" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.0.3"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.1.5"

bucket_name = "notification-canada-ca-${var.env}-csv-upload-logs"
force_destroy = var.force_destroy_s3
Expand Down Expand Up @@ -215,7 +215,7 @@ resource "aws_s3_bucket_public_access_block" "scan_files_document_bucket" {
}

module "document_download_logs" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.0.3"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.1.5"

bucket_name = "notification-canada-ca-${var.env}-document-download-logs"
force_destroy = var.force_destroy_s3
Expand Down Expand Up @@ -347,7 +347,7 @@ resource "aws_s3_bucket_public_access_block" "athena_bucket" {
}

module "athena_logs_bucket" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.0.3"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.1.5"

bucket_name = "notification-canada-ca-${var.env}-athena-logs"
force_destroy = var.force_destroy_s3
Expand All @@ -361,7 +361,7 @@ module "athena_logs_bucket" {
}

module "cbs_logs_bucket" {
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.0.3"
source = "github.com/cds-snc/terraform-modules//S3_log_bucket?ref=v6.1.5"
count = var.create_cbs_bucket ? 1 : 0

bucket_name = var.cbs_satellite_bucket_name
Expand Down
8 changes: 4 additions & 4 deletions aws/common/slack.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Doc: https://registry.terraform.io/modules/terraform-aws-modules/notify-slack/aws/
module "notify_slack_warning" {
source = "terraform-aws-modules/notify-slack/aws"
version = "6.0.0"
version = "6.1.0"

create_sns_topic = false
sns_topic_name = aws_sns_topic.notification-canada-ca-alert-warning.name
Expand All @@ -19,7 +19,7 @@ module "notify_slack_warning" {

module "notify_slack_ok" {
source = "terraform-aws-modules/notify-slack/aws"
version = "6.0.0"
version = "6.1.0"

create_sns_topic = false
sns_topic_name = aws_sns_topic.notification-canada-ca-alert-ok.name
Expand All @@ -37,7 +37,7 @@ module "notify_slack_ok" {

module "notify_slack_critical" {
source = "terraform-aws-modules/notify-slack/aws"
version = "6.0.0"
version = "6.1.0"

create_sns_topic = false
sns_topic_name = aws_sns_topic.notification-canada-ca-alert-critical.name
Expand All @@ -56,7 +56,7 @@ module "notify_slack_critical" {
# Shared generic slack webhook & topic.
module "notify_slack_general" {
source = "terraform-aws-modules/notify-slack/aws"
version = "6.0.0"
version = "6.1.0"

create_sns_topic = false
sns_topic_name = aws_sns_topic.notification-canada-ca-alert-general.name
Expand Down
2 changes: 1 addition & 1 deletion aws/common/vpn.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# access to the private subnets.
#
module "vpn" {
source = "github.com/cds-snc/terraform-modules//client_vpn?ref=v9.0.4"
source = "github.com/cds-snc/terraform-modules//client_vpn?ref=v9.1.0"

endpoint_name = "private-subnets"
access_group_id = var.client_vpn_access_group_id
Expand Down
2 changes: 1 addition & 1 deletion aws/eks/iam.tf
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ data "aws_iam_policy" "ssm_managed_instance" {

module "iam_assumable_role_karpenter" {
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role-with-oidc"
version = "5.28.0"
version = "5.34.0"
create_role = true
role_name = "karpenter-controller-eks"
provider_url = data.aws_eks_cluster.notify_cluster.identity[0].oidc[0].issuer
Expand Down
2 changes: 1 addition & 1 deletion aws/heartbeat/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ locals {
}

module "heartbeat" {
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.0.4"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.1.0"
name = "heartbeat"
billing_tag_value = var.billing_tag_value
ecr_arn = var.heartbeat_ecr_arn
Expand Down
2 changes: 1 addition & 1 deletion aws/ses_receiving_emails/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module "ses_receiving_emails" {
aws = aws.us-east-1
}

source = "github.com/cds-snc/terraform-modules//lambda?ref=v7.3.3"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v7.4.3"
name = "ses_receiving_emails"
billing_tag_value = var.billing_tag_value
ecr_arn = var.ses_receiving_emails_ecr_arn
Expand Down
2 changes: 1 addition & 1 deletion aws/ses_to_sqs_email_callbacks/lambda.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "ses_to_sqs_email_callbacks" {
source = "github.com/cds-snc/terraform-modules//lambda?ref=v7.3.3"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v7.4.3"
name = "ses_to_sqs_email_callbacks"
billing_tag_value = var.billing_tag_value
ecr_arn = var.ses_to_sqs_email_callbacks_ecr_arn
Expand Down
2 changes: 1 addition & 1 deletion aws/sns_to_sqs_sms_callbacks/lambda.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "sns_to_sqs_sms_callbacks" {
source = "github.com/cds-snc/terraform-modules//lambda?ref=v7.3.3"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v7.4.3"
name = "sns_to_sqs_sms_callbacks"
billing_tag_value = var.billing_tag_value
ecr_arn = var.sns_to_sqs_sms_callbacks_ecr_arn
Expand Down
2 changes: 1 addition & 1 deletion aws/system_status/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ locals {
}

module "system_status" {
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.0.4"
source = "github.com/cds-snc/terraform-modules//lambda?ref=v9.1.0"
name = "system_status"
billing_tag_value = var.billing_tag_value
ecr_arn = var.system_status_ecr_arn
Expand Down
2 changes: 1 addition & 1 deletion aws/system_status_static_site/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ variable "billing_tag_value" {
}

module "system_status_static_site" {
source = "github.com/cds-snc/terraform-modules//simple_static_website?ref=v9.0.4"
source = "github.com/cds-snc/terraform-modules//simple_static_website?ref=v9.1.0"

count = var.status_cert_created ? 1 : 0

Expand Down

0 comments on commit ffc38bc

Please sign in to comment.