1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

feat: Add support for deletion protection functionality in the cluster (#3475)

* feat: Add support for deletion protection functionality in the cluster

* fix: Bump version throughout, correct argument/variable name

---------

Co-authored-by: Tiago Vieira <tiago.vieira@sqills.com>
Co-authored-by: Bryant Biggs <bryantbiggs@gmail.com>
This commit is contained in:
Tiago Vieira
2025-08-15 13:23:13 +01:00
committed by GitHub
parent 30664d2617
commit 83c9cd187a
31 changed files with 54 additions and 45 deletions
+6
View File
@@ -44,6 +44,12 @@ variable "enabled_log_types" {
default = ["audit", "api", "authenticator"]
}
variable "deletion_protection" {
description = "Whether to enable deletion protection for the cluster. When enabled, the cluster cannot be deleted unless deletion protection is first disabled"
type = bool
default = null
}
variable "force_update_version" {
description = "Force version update by overriding upgrade-blocking readiness checks when updating a cluster"
type = bool