mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-05-01 21:04:27 +02:00
Adding new mixed type of worker group with instance overrides and mixed instances policy (#371)
* Adding new mixed type of worker group with instance overrides and mixed instances policy * moving all count and lifecycle rule parameters to top/bottom * adding custom IAM parts * updating doc with new options * fixes for spot instances
This commit is contained in:
17
variables.tf
17
variables.tf
@@ -132,6 +132,23 @@ variable "worker_groups_launch_template" {
|
||||
]
|
||||
}
|
||||
|
||||
variable "worker_group_launch_template_mixed" {
|
||||
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"
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
variable "worker_group_launch_template_mixed_count" {
|
||||
description = "The number of maps contained within the worker_group_launch_template_mixed list."
|
||||
type = "string"
|
||||
default = "0"
|
||||
}
|
||||
|
||||
variable "worker_group_launch_template_count" {
|
||||
description = "The number of maps contained within the worker_groups_launch_template list."
|
||||
type = "string"
|
||||
|
||||
Reference in New Issue
Block a user