fix: The type of the output cloudwatch_log_group_name should be a string instead of a list of strings (#1061)

NOTES: The output `cloudwatch_log_group_name` was incorrectly returning the log group name as a list of strings. As a workaround, people were using `module.eks_cluster.cloudwatch_log_group_name[0]` but that was totally inconsistent with output name. Those users can now use `module.eks_cluster.cloudwatch_log_group_name` directly.
This commit is contained in:
Paul Pop
2020-10-28 21:37:21 +00:00
committed by GitHub
parent 751c422330
commit ca7593a6db
3 changed files with 3 additions and 3 deletions

View File

@@ -318,7 +318,7 @@ variable "create_eks" {
}
variable "node_groups_defaults" {
description = "Map of values to be applied to all node groups. See `node_groups` module's documentaton for more details"
description = "Map of values to be applied to all node groups. See `node_groups` module's documentation for more details"
type = any
default = {}
}