Files
noahspan-vela/postgres.tf
2025-01-27 17:26:43 -06:00

15 lines
462 B
HCL

resource "helm_release" "postgresql" {
name = "postgresql"
repository = "https://charts.bitnami.com/bitnami"
chart = "postgresql"
namespace = "default"
create_namespace = false
version = "15.5.23"
values = [templatefile("${path.module}/helm_values/postgresql.yaml", {
postgres_user = "${var.POSTGRES_USER}"
postgres_password = "${var.POSTGRES_PASSWORD}"
vela_user = "${var.VELA_USER}"
vela_password = "${var.VELA_PASSWORD}"
})]
}