Fix variable description typo, regenerate README (#247)

This commit is contained in:
Jonathan Boulle
2019-01-15 12:03:48 +01:00
committed by Max Williams
parent f3ab7c67da
commit 95d4e78f2f
2 changed files with 32 additions and 28 deletions

View File

@@ -82,9 +82,11 @@ variable "worker_groups" {
description = "A list of maps defining worker group configurations to be defined using AWS Launch Configurations. See workers_group_defaults for valid keys."
type = "list"
default = [{
"name" = "default"
}]
default = [
{
"name" = "default"
},
]
}
variable "worker_group_count" {
@@ -103,9 +105,11 @@ variable "worker_groups_launch_template" {
description = "A list of maps defining worker group configurations to be defined using AWS Launch Templates. See workers_group_defaults for valid keys."
type = "list"
default = [{
"name" = "default"
}]
default = [
{
"name" = "default"
},
]
}
variable "worker_group_launch_template_count" {
@@ -137,7 +141,7 @@ variable "worker_sg_ingress_from_port" {
}
variable "kubeconfig_aws_authenticator_command" {
description = "Command to use to to fetch AWS EKS credentials."
description = "Command to use to fetch AWS EKS credentials."
default = "aws-iam-authenticator"
}