Skip to content
Closed
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 infrastructure/modules/deploy_lambda/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "content_cache_hydrator_lambda_function" {
source = "terraform-aws-modules/lambda/aws"
version = "~> 8.1.2"
version = "~> 8.5.0"

function_name = "${var.prefix}-content-cache-hydrator"
description = "Content cache hydrator lambda"
Expand Down
4 changes: 2 additions & 2 deletions infrastructure/modules/deploy_monitoring/sns.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "sns" {
source = "terraform-aws-modules/sns/aws"
version = "~> 7.0.0"
version = "~> 7.1.0"

name = "${var.prefix}-cloudwatch-alarms"
display_name = "VitA Cloudwatch Alarms"
Expand All @@ -13,7 +13,7 @@ module "sns" {

module "sns_global" {
source = "terraform-aws-modules/sns/aws"
version = "~> 7.0.0"
version = "~> 7.1.0"
providers = {
aws = aws.global
}
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/deploy_splunk/lambda.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "firehose_transformer_lambda_function" {
source = "terraform-aws-modules/lambda/aws"
version = "~> 8.1.2"
version = "~> 8.5.0"

function_name = "${var.prefix}-firehose-transformer"
description = "Firehose Lambda transformer for sending formatted logs to splunk"
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/modules/deploy_splunk/s3.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "failed_firehose_delivery_logs_s3_bucket" {
source = "terraform-aws-modules/s3-bucket/aws"
version = "~> 5.9.1"
version = "~> 5.10.0"

bucket = "${var.prefix}-firehose-delivery-failures"
force_destroy = false
Expand Down
Loading