diff --git a/eks_console_access.tf b/eks_console_access.tf index afa33eb..5b5e248 100644 --- a/eks_console_access.tf +++ b/eks_console_access.tf @@ -36,5 +36,5 @@ data "http" "cluster_roles" { # Apply the Kubernetes manifests to the cluster resource "kubernetes_manifest" "deploy_cluster_roles" { for_each = local.cluster_roles_map - manifest = yamldecode(trimspace(data.http.cluster_roles[each.key].body)) + manifest = yamldecode(data.http.cluster_roles[each.key].body) }