Skip to content

Commit 4289f5a

Browse files
VIA-579 AJ Upgrade infrastructure
- terraform: 1.11.2 -> 1.14.1 - terraform-aws-modules/s3-bucket/aws: 4.11.0 -> 5.x.y - terraform-aws-modules/cloudwatch/aws//modules/metric-alarm: 5.7.1 -> 5.x.y - RJPearson94/open-next/aws//modules/tf-aws-open-next-zone: 3.6.1 -> 3.6.2 - terraform-aws-modules/lambda/aws: 7.21.1 -> 8.x.y - terraform-aws-modules/sns/aws: 6.2.0 -> 7.x.y
1 parent b80705d commit 4289f5a

File tree

16 files changed

+65
-56
lines changed

16 files changed

+65
-56
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is for you! Please, updated to the versions agreed by your team.
22

3-
terraform 1.11.2
3+
terraform 1.14.1
44
pre-commit 3.6.0
55
vale 3.6.0
66
nodejs 22.13.1

infrastructure/environments/dev/.terraform.lock.hcl

Lines changed: 42 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infrastructure/environments/dev/iam/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "~> 5.0"
5+
version = "~> 6.0"
66
}
77
}
88

infrastructure/environments/dev/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
aws = {
44
source = "hashicorp/aws"
5-
version = "~> 5.0"
5+
version = "~> 6.0"
66
}
77
}
88

infrastructure/environments/dev/s3.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
module "content_cache_s3_bucket" {
22
source = "terraform-aws-modules/s3-bucket/aws"
3-
version = "~> 4.11.0"
3+
version = "~> 5.0"
44

5-
bucket = local.content_cache_bucket_name
6-
force_destroy = true
5+
bucket = local.content_cache_bucket_name
6+
force_destroy = true
7+
skip_destroy_public_access_block = false
78
versioning = {
89
enabled = true
910
}

infrastructure/modules/deploy_app/alarms_cloudfront.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module "alarms_cloudfront" {
3636
for_each = local.alarms_cloudfront
3737

3838
source = "terraform-aws-modules/cloudwatch/aws//modules/metric-alarm"
39-
version = "~> 5.7.1"
39+
version = "~> 5.0"
4040

4141
alarm_name = "${var.prefix}-${each.key}"
4242
alarm_description = each.value.alarm_description

infrastructure/modules/deploy_app/alarms_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ module "alarms_lambda" {
8181
for_each = local.alarms_lambda
8282

8383
source = "terraform-aws-modules/cloudwatch/aws//modules/metric-alarm"
84-
version = "~> 5.7.1"
84+
version = "~> 5.0"
8585

8686
alarm_name = "${var.prefix}-${each.key}"
8787
alarm_description = each.value.alarm_description

infrastructure/modules/deploy_app/alarms_lambda_logs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module "alarms_logs" {
3535
for_each = local.alarms_lambda_logs
3636

3737
source = "terraform-aws-modules/cloudwatch/aws//modules/metric-alarm"
38-
version = "~> 5.7.1"
38+
version = "~> 5.0"
3939

4040
alarm_name = "${var.prefix}-${each.key}"
4141
alarm_description = each.value.alarm_description

infrastructure/modules/deploy_app/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module "deploy_app" {
22
source = "RJPearson94/open-next/aws//modules/tf-aws-open-next-zone"
3-
version = "3.6.1"
3+
version = "3.6.2"
44
open_next_version = "v3.x.x"
55
function_architecture = "arm64"
66
prefix = var.prefix

infrastructure/modules/deploy_lambda/alarms_lambda_logs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module "alarms_logs" {
3535
for_each = local.alarms_lambda_logs
3636

3737
source = "terraform-aws-modules/cloudwatch/aws//modules/metric-alarm"
38-
version = "~> 5.7.1"
38+
version = "~> 5.0"
3939

4040
alarm_name = "${var.prefix}-${each.key}"
4141
alarm_description = each.value.alarm_description

0 commit comments

Comments
 (0)