generated from aws-ia/terraform-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 159
Open
Labels
Description
Cert_Manager is currently using installCRDs by default, which is a deprecated option of the helm chart of cert_manager.
This should be updated to use crds.enabled = true + crds.keep = true.
These are the lines of coded that should be reviewed:
terraform-aws-eks-blueprints-addons/main.tf
Lines 1909 to 1921 in 2848b19
set = concat([ | |
{ | |
name = "installCRDs" | |
value = true | |
}, | |
{ | |
name = "serviceAccount.name" | |
value = local.cert_manager_service_account | |
} | |
], | |
try(var.cert_manager.set, []) | |
) | |
set_sensitive = try(var.cert_manager.set_sensitive, []) |