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

fix: Correct addon timeout lookup/override logic to support global and addon specific settings (#3492)

This commit is contained in:
Bryant Biggs
2025-08-24 13:16:17 -05:00
committed by GitHub
parent b02727a652
commit b236208d5c
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -635,7 +635,7 @@ variable "addons" {
create = optional(string)
update = optional(string)
delete = optional(string)
}))
}), {})
tags = optional(map(string), {})
}))
default = null
@@ -648,7 +648,7 @@ variable "addons_timeouts" {
update = optional(string)
delete = optional(string)
})
default = null
default = {}
}
################################################################################