diff --git a/infrastructure/modules/iam/README.md b/infrastructure/modules/iam/README.md index d50dfb41..be3ae25d 100644 --- a/infrastructure/modules/iam/README.md +++ b/infrastructure/modules/iam/README.md @@ -173,10 +173,10 @@ No providers. | Name | Source | Version | | ---- | ------ | ------- | -| [policies](#module\_policies) | terraform-aws-modules/iam/aws//modules/iam-policy | 6.6.0 | +| [policies](#module\_policies) | terraform-aws-modules/iam/aws//modules/iam-policy | 6.6.1 | | [policy\_label](#module\_policy\_label) | ../tags | n/a | | [role\_label](#module\_role\_label) | ../tags | n/a | -| [roles](#module\_roles) | terraform-aws-modules/iam/aws//modules/iam-role | 6.6.0 | +| [roles](#module\_roles) | terraform-aws-modules/iam/aws//modules/iam-role | 6.6.1 | | [this](#module\_this) | ../tags | n/a | ## Resources diff --git a/infrastructure/modules/iam/main.tf b/infrastructure/modules/iam/main.tf index 2c1e3b84..e31bb23a 100644 --- a/infrastructure/modules/iam/main.tf +++ b/infrastructure/modules/iam/main.tf @@ -39,7 +39,7 @@ module "role_label" { module "policies" { source = "terraform-aws-modules/iam/aws//modules/iam-policy" - version = "6.6.0" + version = "6.6.1" for_each = module.this.enabled ? var.policies : {} name = module.policy_label[each.key].id @@ -63,7 +63,7 @@ module "policies" { module "roles" { source = "terraform-aws-modules/iam/aws//modules/iam-role" - version = "6.6.0" + version = "6.6.1" for_each = module.this.enabled ? var.roles : {} name = module.role_label[each.key].id diff --git a/infrastructure/modules/lambda/README.md b/infrastructure/modules/lambda/README.md index 88884d64..bb694a32 100644 --- a/infrastructure/modules/lambda/README.md +++ b/infrastructure/modules/lambda/README.md @@ -129,7 +129,7 @@ module "lambda_with_layers" { | Name | Source | Version | | ---- | ------ | ------- | -| [lambda\_function](#module\_lambda\_function) | terraform-aws-modules/lambda/aws | 8.7.0 | +| [lambda\_function](#module\_lambda\_function) | terraform-aws-modules/lambda/aws | 8.8.0 | | [this](#module\_this) | ../tags | n/a | ## Resources diff --git a/infrastructure/modules/lambda/main.tf b/infrastructure/modules/lambda/main.tf index 869cf839..250131d4 100644 --- a/infrastructure/modules/lambda/main.tf +++ b/infrastructure/modules/lambda/main.tf @@ -5,7 +5,7 @@ module "lambda_function" { source = "terraform-aws-modules/lambda/aws" # downgrade version as workaround for bug https://github.com/terraform-aws-modules/terraform-aws-lambda/issues/733 - version = "8.7.0" + version = "8.8.0" function_name = local.function_name description = var.function_description diff --git a/infrastructure/modules/s3-bucket/README.md b/infrastructure/modules/s3-bucket/README.md index eb41aabe..c3260d08 100644 --- a/infrastructure/modules/s3-bucket/README.md +++ b/infrastructure/modules/s3-bucket/README.md @@ -107,7 +107,7 @@ No providers. | Name | Source | Version | | ---- | ------ | ------- | -| [s3\_bucket](#module\_s3\_bucket) | terraform-aws-modules/s3-bucket/aws | 5.13.0 | +| [s3\_bucket](#module\_s3\_bucket) | terraform-aws-modules/s3-bucket/aws | 5.14.0 | | [this](#module\_this) | ../tags | n/a | ## Resources diff --git a/infrastructure/modules/s3-bucket/main.tf b/infrastructure/modules/s3-bucket/main.tf index fe765e69..ee8ac56a 100644 --- a/infrastructure/modules/s3-bucket/main.tf +++ b/infrastructure/modules/s3-bucket/main.tf @@ -17,7 +17,7 @@ module "s3_bucket" { source = "terraform-aws-modules/s3-bucket/aws" - version = "5.13.0" + version = "5.14.0" create_bucket = module.this.enabled