Skip to content

Commit 38820c8

Browse files
committed
Merge branch 'master' of github.com:rabiloo/terraform-aws-ecs
2 parents f867ac7 + caa87e5 commit 38820c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/ecs-execution-role/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ data "aws_iam_policy_document" "policy" {
5050

5151
module "policy" {
5252
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
53-
version = "~>5.30.0"
53+
version = "~>5.33.0"
5454

5555
name = "${var.name}-policies"
5656
policy = data.aws_iam_policy_document.policy.json
@@ -59,7 +59,7 @@ module "policy" {
5959

6060
module "this" {
6161
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
62-
version = "~>5.30.0"
62+
version = "~>5.33.0"
6363

6464
role_name = var.name
6565
role_path = var.path

modules/ecs-task-role/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ data "aws_iam_policy_document" "policy" {
8989

9090
module "policy" {
9191
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
92-
version = "~>5.30.0"
92+
version = "~>5.33.0"
9393

9494
name = "${var.name}-policies"
9595
policy = coalesce(var.custom_policy_document_json, data.aws_iam_policy_document.policy.json)
@@ -98,7 +98,7 @@ module "policy" {
9898

9999
module "this" {
100100
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
101-
version = "~>5.30.0"
101+
version = "~>5.33.0"
102102

103103
role_name = var.name
104104
role_path = var.path

0 commit comments

Comments
 (0)