Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/terraform/src/boto3-1.34.155
Browse files Browse the repository at this point in the history
Signed-off-by: amartin <[email protected]>
  • Loading branch information
amartingarcia authored Aug 7, 2024
2 parents d7f7f0e + 41725a7 commit 84a5619
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion terraform/cloudwatch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Cloudwatch Logs for AWS SSM Run Command output
module "log_group_from_ssm" {
source = "terraform-aws-modules/cloudwatch/aws//modules/log-group"
version = "3.2.0"
version = "5.4.0"

name = "/aws/ssm/${lower(local.global_name)}"
retention_in_days = var.log_group_from_ssm_retention
Expand Down
2 changes: 1 addition & 1 deletion terraform/ec2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ resource "aws_key_pair" "testing" {
module "ec2_sample_rotate" {
count = var.testing_enabled ? 1 : 0
source = "terraform-aws-modules/ec2-instance/aws"
version = "~> 3.0"
version = "~> 5.6"

name = "instance-${lower(local.global_name)}"

Expand Down
2 changes: 1 addition & 1 deletion terraform/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Function
module "lambda_function" {
source = "terraform-aws-modules/lambda/aws"
version = "3.3.1"
version = "7.7.1"

function_name = lower(local.global_name)
description = var.lambda_function.default.lambda_description
Expand Down
6 changes: 3 additions & 3 deletions terraform/sns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## AWS Run Command Failed
module "sns_ssm_run_command" {
source = "terraform-aws-modules/sns/aws"
version = "~> 3.0"
version = "~> 6.1"

name = "${lower(local.global_name)}-ssm-run-command-failed"
display_name = "[${upper(var.tags["environment"])}] ${var.sns_config.sns_ssm_run_command.display_name}"
Expand All @@ -24,7 +24,7 @@ resource "aws_sns_topic_subscription" "sns_ssm_run_command" {
## AWS Lambda Failed
module "sns_lambda_failed" {
source = "terraform-aws-modules/sns/aws"
version = "~> 3.0"
version = "~> 6.1"

name = "${lower(local.global_name)}-lambda-failed"
display_name = "[${upper(var.tags["environment"])}] ${var.sns_config.sns_lambda_failed.display_name}"
Expand All @@ -46,7 +46,7 @@ resource "aws_sns_topic_subscription" "lambda" {
## When Rotate Function Success
module "sns_rotate_function_success" {
source = "terraform-aws-modules/sns/aws"
version = "~> 3.0"
version = "~> 6.1"

name = "${lower(local.global_name)}-rotate-function-success"
display_name = "[${upper(var.tags["environment"])}] ${var.sns_config.sns_rotate_function_success.display_name}"
Expand Down
4 changes: 2 additions & 2 deletions terraform/src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
boto3==1.34.155
pycryptodome==3.19.1
boto3==1.21.21
pycryptodome==3.20.0
crypto==1.4.1
2 changes: 1 addition & 1 deletion terraform/terraform_config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.9.0"
version = "~> 5.61.0"
}
}

Expand Down

0 comments on commit 84a5619

Please sign in to comment.