Skip to content

Commit

Permalink
chore(deps): update terraform terraform-aws-modules/iam/aws to v5.52.1
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 3, 2025
1 parent 19e2834 commit 141d9b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions wf_cluster_manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "iam_role_cluster_manager" {
count = var.create_cluster_manager_role ? 1 : 0

source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.17.0"
version = "5.52.1"

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

source = "terraform-aws-modules/iam/aws//modules/iam-policy"
version = "5.17.0"
version = "5.52.1"

name = "wf-ClusterManager${local.resource_suffix}"
description = "Create and manage EKS Kubernetes clusters"
Expand Down
4 changes: 2 additions & 2 deletions wf_dns_zone_manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "iam_role_dns_zone_manager" {
count = var.create_dns_zone_manager_role ? 1 : 0

source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.17.0"
version = "5.52.1"

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

source = "terraform-aws-modules/iam/aws//modules/iam-policy"
version = "5.17.0"
version = "5.52.1"

name = "wf-DNSZoneManager${local.resource_suffix}"
description = "Create and manage Route 53 DNS Zones for automated DNS management"
Expand Down
4 changes: 2 additions & 2 deletions wf_network_manager.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module "iam_role_network_manager" {
count = var.create_network_manager_role ? 1 : 0

source = "terraform-aws-modules/iam/aws//modules/iam-assumable-role"
version = "5.17.0"
version = "5.52.1"

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

source = "terraform-aws-modules/iam/aws//modules/iam-policy"
version = "5.17.0"
version = "5.52.1"

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

0 comments on commit 141d9b0

Please sign in to comment.