diff --git a/locals.tf b/locals.tf index f1a877f..fcd495f 100644 --- a/locals.tf +++ b/locals.tf @@ -1,7 +1,6 @@ locals { helm_values = [{ "aws-ebs-csi-driver" = { - nameOverride = var.name controller = { serviceAccount = { annotations = { diff --git a/main.tf b/main.tf index 9de9b2e..e240bc8 100644 --- a/main.tf +++ b/main.tf @@ -76,7 +76,8 @@ resource "argocd_application" "this" { path = "charts/ebs-csi-driver" target_revision = var.target_revision helm { - values = data.utils_deep_merge_yaml.values.output + release_name = "efs-csi-driver" + values = data.utils_deep_merge_yaml.values.output } } diff --git a/variables.tf b/variables.tf index aeb60f5..47f82c8 100644 --- a/variables.tf +++ b/variables.tf @@ -67,12 +67,6 @@ variable "dependency_ids" { ## Module variables ####################### -variable "name" { - description = "Name used to override the chart name on deployment." - type = string - default = "ebs-csi-driver" -} - variable "create_role" { description = "Boolean to indicate that the OIDC assumable IAM role should be created. **If passing `iam_role_arn` this should be false, otherwise if you want to create the OIDC assumable IAM role provided by this module, you will need to specify the variable `cluster_oidc_issuer_url`.**" type = bool