We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
resolve_conflicts_on_create_default
null
1 parent b468ead commit 35388bbCopy full SHA for 35388bb
main.tf
@@ -483,7 +483,7 @@ resource "aws_iam_policy" "cluster_encryption" {
483
484
locals {
485
# TODO - Set to `NONE` on next breaking change when default addons are disabled
486
- resolve_conflicts_on_create_default = var.bootstrap_self_managed_addons ? "OVERWRITE" : "NONE"
+ resolve_conflicts_on_create_default = coalesce(var.bootstrap_self_managed_addons, true) ? "OVERWRITE" : "NONE"
487
}
488
489
data "aws_eks_addon_version" "this" {
0 commit comments