Skip to content

Commit

Permalink
fix helm_release_name max charts
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolagospagopa committed Nov 25, 2024
1 parent a485769 commit 78f4eb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cert_mounter/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "helm_release" "cert_mounter" {
name = var.helm_release_name
name = replace(substr(var.helm_release_name, 0, 53), ".", "-")
repository = "https://pagopa.github.io/aks-helm-cert-mounter-blueprint"
chart = "cert-mounter-blueprint"
version = local.chart_version
Expand Down

0 comments on commit 78f4eb0

Please sign in to comment.