Skip to content

Commit 5078143

Browse files
chore(deps): update terraform terraform-aws-modules/iam/aws to v5.51.0
1 parent 19e2834 commit 5078143

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

wf_cluster_manager.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module "iam_role_cluster_manager" {
22
count = var.create_cluster_manager_role ? 1 : 0
33

44
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
5-
version = "5.17.0"
5+
version = "5.51.0"
66

77
create_role = true
88
role_name = "wf-ClusterManager${local.resource_suffix}"
@@ -16,7 +16,7 @@ module "iam_policy_cluster_manager" {
1616
count = var.create_cluster_manager_role ? 1 : 0
1717

1818
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
19-
version = "5.17.0"
19+
version = "5.51.0"
2020

2121
name = "wf-ClusterManager${local.resource_suffix}"
2222
description = "Create and manage EKS Kubernetes clusters"

wf_dns_zone_manager.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module "iam_role_dns_zone_manager" {
22
count = var.create_dns_zone_manager_role ? 1 : 0
33

44
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
5-
version = "5.17.0"
5+
version = "5.51.0"
66

77
create_role = true
88
role_name = "wf-DNSZoneManager${local.resource_suffix}"
@@ -16,7 +16,7 @@ module "iam_policy_dns_zone_manager" {
1616
count = var.create_dns_zone_manager_role ? 1 : 0
1717

1818
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
19-
version = "5.17.0"
19+
version = "5.51.0"
2020

2121
name = "wf-DNSZoneManager${local.resource_suffix}"
2222
description = "Create and manage Route 53 DNS Zones for automated DNS management"

wf_network_manager.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module "iam_role_network_manager" {
22
count = var.create_network_manager_role ? 1 : 0
33

44
source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
5-
version = "5.17.0"
5+
version = "5.51.0"
66

77
create_role = true
88
role_name = "wf-NetworkManager${local.resource_suffix}"
@@ -16,7 +16,7 @@ module "iam_policy_network_manager" {
1616
count = var.create_network_manager_role ? 1 : 0
1717

1818
source = "terraform-aws-modules/iam/aws//modules/iam-policy"
19-
version = "5.17.0"
19+
version = "5.51.0"
2020

2121
name = "wf-NetworkManager${local.resource_suffix}"
2222
description = "Create and manage VPCs for EKS clusters"

0 commit comments

Comments
 (0)