mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-12 05:21:33 +01:00
Fix variable description typo, regenerate README (#247)
This commit is contained in:
committed by
Max Williams
parent
f3ab7c67da
commit
95d4e78f2f
18
variables.tf
18
variables.tf
@@ -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"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user