From f977d83500ac529b09918d4e78aa8887749a8cd1 Mon Sep 17 00:00:00 2001 From: Cody Grant Date: Thu, 23 Mar 2023 12:03:02 -0400 Subject: [PATCH] fix: Add `aws_eks_addons.before_compute` to the `cluster_addons` output (#2533) Co-authored-by: Bryant Biggs --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index f0cb797e14..ea02a3a8cc 100644 --- a/outputs.tf +++ b/outputs.tf @@ -143,7 +143,7 @@ output "cluster_iam_role_unique_id" { output "cluster_addons" { description = "Map of attribute maps for all EKS cluster addons enabled" - value = aws_eks_addon.this + value = merge(aws_eks_addon.this, aws_eks_addon.before_compute) } ################################################################################