From 6a2783e49b0208391a5e78c7e5efac7391b849ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 05:56:51 +0000 Subject: [PATCH] Update terraform-aws-modules/iam/aws requirement Updates the requirements on [terraform-aws-modules/iam/aws](https://github.com/terraform-aws-modules/terraform-aws-iam) to permit the latest version. - [Release notes](https://github.com/terraform-aws-modules/terraform-aws-iam/releases) - [Changelog](https://github.com/terraform-aws-modules/terraform-aws-iam/blob/master/CHANGELOG.md) - [Commits](https://github.com/terraform-aws-modules/terraform-aws-iam/compare/v5.30.0...v5.33.0) --- updated-dependencies: - dependency-name: terraform-aws-modules/iam/aws dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- modules/ecs-task-role/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ecs-task-role/main.tf b/modules/ecs-task-role/main.tf index 3c27a2c..9185cf3 100644 --- a/modules/ecs-task-role/main.tf +++ b/modules/ecs-task-role/main.tf @@ -105,7 +105,7 @@ data "aws_iam_policy_document" "policy" { module "policy" { source = "terraform-aws-modules/iam/aws//modules/iam-policy" - version = "~>5.30.0" + version = "~>5.33.0" name = "${var.name}-policies" policy = data.aws_iam_policy_document.policy.json @@ -114,7 +114,7 @@ module "policy" { module "this" { source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role" - version = "~>5.30.0" + version = "~>5.33.0" role_name = var.name role_path = var.path