k3s-ansible/terraform/longhorn.tf

10 lines
326 B
Terraform
Raw Normal View History

2024-02-20 04:16:01 +01:00
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"
}