From c54ce911dcb5ddec327e119a01e5b7a5667ee78a Mon Sep 17 00:00:00 2001 From: senthil Vivekanandan <60672460+senthilvv@users.noreply.github.com> Date: Mon, 12 Oct 2020 07:51:28 -0400 Subject: [PATCH] fix: Set IAM Path for `cluster_elb_sl_role_creation` IAM policy (#1045) --- cluster.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/cluster.tf b/cluster.tf index 34b7314..268de80 100644 --- a/cluster.tf +++ b/cluster.tf @@ -163,6 +163,7 @@ resource "aws_iam_policy" "cluster_elb_sl_role_creation" { name_prefix = "${var.cluster_name}-elb-sl-role-creation" description = "Permissions for EKS to create AWSServiceRoleForElasticLoadBalancing service-linked role" policy = data.aws_iam_policy_document.cluster_elb_sl_role_creation[0].json + path = var.iam_path } resource "aws_iam_role_policy_attachment" "cluster_elb_sl_role_creation" {