k3s-ansible/terraform/longhorn.tf
2024-02-19 22:16:01 -05:00

10 lines
326 B
HCL

resource "helm_release" "longhorn" {
name = "longhorn"
repository = "https://charts.longhorn.io"
namespace = "longhorn-system"
chart = "longhorn"
create_namespace = true
values = [file("${path.module}/values/longhorn.values.yaml")]
# version = "0.14.3"
}