Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Minor typo on comments #1266

Merged
merged 1 commit into from
Dec 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ output "worker_node_security_group_id" {
value = try(module.aws_eks.node_security_group_id, "EKS Node groups not enabled")
}

#-------------------------------
# Managed Node Groups Outputs
#-------------------------------
#---------------------------------
# Self-managed Node Groups Outputs
#---------------------------------
output "self_managed_node_groups" {
description = "Outputs from EKS Self-managed node groups "
value = var.create_eks && length(var.self_managed_node_groups) > 0 ? module.aws_eks_self_managed_node_groups[*] : []
Expand Down Expand Up @@ -115,9 +115,9 @@ output "windows_node_group_aws_auth_config_map" {
value = local.windows_node_group_aws_auth_config_map[*]
}

#-------------------------------
# Managed Node Groups Outputs
#-------------------------------
#--------------------------------
# EKS Managed Node Groups Outputs
#--------------------------------
output "managed_node_groups" {
description = "Outputs from EKS Managed node groups "
value = var.create_eks && length(var.managed_node_groups) > 0 ? module.aws_eks_managed_node_groups[*] : []
Expand Down