resource "helm_release" "zot" { name = "zot" repository = "https://zotregistry.dev/helm-charts" chart = "zot" namespace = "registry" create_namespace = true values = [ templatefile("${path.module}/values.yaml.tftpl", { service_uri = var.service_uri }) ] } output "installed" { value = true depends_on = [helm_release.zot] }