First commit

This commit is contained in:
2025-01-27 17:26:43 -06:00
commit bedae897ca
9 changed files with 84 additions and 0 deletions

15
postgres.tf Normal file
View File

@@ -0,0 +1,15 @@
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}"
})]
}