From b3e7722c3b8885a59a30d1b32f6a3567fa4833f3 Mon Sep 17 00:00:00 2001 From: "Matthew C. Morgan" Date: Mon, 13 Jan 2025 17:01:58 -0500 Subject: [PATCH] nope --- eks_console_access.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }