From 5c6faa2d205c87d850fad72b3fa5fc53eabe2623 Mon Sep 17 00:00:00 2001 From: Luther Coleman McGinty Date: Thu, 12 Sep 2024 11:08:05 -0400 Subject: [PATCH] Bug fix where access entries output was duplicated (#20) Minor terraform bug fix where access entries appear twice in the outputs file. --- outputs.tf | 5 ----- 1 file changed, 5 deletions(-) diff --git a/outputs.tf b/outputs.tf index b857692..2275ab9 100644 --- a/outputs.tf +++ b/outputs.tf @@ -289,8 +289,3 @@ output "node_group_name" { description = "name of the node group created for use by karpenter" value = local.ng_name } - -output "access_entries" { - description = "the access entries created in the cluster" - value = local.access_entries -}