From e93e9ae57f1d83a78f3dac9d516a38bc4a5a6500 Mon Sep 17 00:00:00 2001 From: senthil Vivekanandan <60672460+senthilvv@users.noreply.github.com> Date: Sat, 10 Oct 2020 10:08:06 -0400 Subject: [PATCH] #1044 - Path varaiable is not set for resource "aws_iam_policy" "cluster_elb_sl_role_creation" Fix for #1044 - Path variable is not set for resource "aws_iam_policy" "cluster_elb_sl_role_creation" Path variable added to Iam Policy --- cluster.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/cluster.tf b/cluster.tf index 34b7314b5c..268de8013b 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" {