From 41a5eb56d7ecd6dabc3269c33b45e7b466d82e3c Mon Sep 17 00:00:00 2001 From: Max Xu Date: Mon, 22 May 2023 10:03:31 +0800 Subject: [PATCH] fix: set create_iam_policies to false Signed-off-by: Max Xu --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index d76bd61..a0f44fd 100644 --- a/variables.tf +++ b/variables.tf @@ -186,7 +186,7 @@ variable "create_cluster_security_group" { } variable "create_iam_policies" { - default = true + default = false description = "Whether to create IAM policies for the IAM roles. If set to false, the module will default to using existing policy ARNs that must be present in the AWS account" type = bool }