File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ output "eks_managed_node_groups" {
179
179
180
180
output "eks_managed_node_groups_autoscaling_group_names" {
181
181
description = " List of the autoscaling group names created by EKS managed node groups"
182
- value = flatten ([for group in module . eks_managed_node_group : group . node_group_autoscaling_group_names ])
182
+ value = compact ( flatten ([for group in module . eks_managed_node_group : group . node_group_autoscaling_group_names ]) )
183
183
}
184
184
185
185
# ###############################################################################
@@ -193,7 +193,7 @@ output "self_managed_node_groups" {
193
193
194
194
output "self_managed_node_groups_autoscaling_group_names" {
195
195
description = " List of the autoscaling group names created by self-managed node groups"
196
- value = [for group in module . self_managed_node_group : group . autoscaling_group_name ]
196
+ value = compact ( [for group in module . self_managed_node_group : group . autoscaling_group_name ])
197
197
}
198
198
199
199
# ###############################################################################
You can’t perform that action at this time.
0 commit comments