mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-11 21:11:32 +01:00
feat: Add node repair config to managed node group (#3271)
* feat: add var.node_repair_config to eks-managed-node-group Fixes terraform-aws-modules/terraform-aws-eks#3249 * chore: run terraform-docs * chore: update examples/eks-managed-node-group * fix: Correct implementation --------- Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
@@ -468,6 +468,14 @@ variable "update_config" {
|
||||
}
|
||||
}
|
||||
|
||||
variable "node_repair_config" {
|
||||
description = "The node auto repair configuration for the node group"
|
||||
type = object({
|
||||
enabled = optional(bool, true)
|
||||
})
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "timeouts" {
|
||||
description = "Create, update, and delete timeout configurations for the node group"
|
||||
type = map(string)
|
||||
|
||||
Reference in New Issue
Block a user