feat: Add support for addon configuration_values (#2345)

Resolves undefined
This commit is contained in:
Bryant Biggs
2022-12-16 14:44:21 -05:00
committed by GitHub
parent ca03fd9ec1
commit 3b62f6c316
26 changed files with 57 additions and 307 deletions

View File

@@ -375,6 +375,7 @@ resource "aws_eks_addon" "this" {
addon_name = try(each.value.name, each.key)
addon_version = try(each.value.addon_version, data.aws_eks_addon_version.this[each.key].version)
configuration_values = try(each.value.configuration_values, null)
preserve = try(each.value.preserve, null)
resolve_conflicts = try(each.value.resolve_conflicts, "OVERWRITE")
service_account_role_arn = try(each.value.service_account_role_arn, null)