chore: move to export pg connection string

This commit is contained in:
2025-09-27 13:50:00 +10:00
parent 4c041e1192
commit c98147a1fc
2 changed files with 2 additions and 9 deletions

View File

@@ -11,9 +11,7 @@ terraform {
}
}
backend "pg" {
conn_str = var.PG_CONN_STR
}
backend "pg" {}
encryption {
key_provider "pbkdf2" "mykey" {
passphrase = var.passphrase
@@ -66,11 +64,6 @@ variable "passphrase" {
sensitive = true
}
variable "PG_CONN_STR" {
type = string
sensitive = true
}
provider "proxmox" {
pm_api_url = var.proxmox_api_url
pm_user = "root@pam"