feat: пример pg-list-python — список из PostgreSQL без джоба

This commit is contained in:
“Naeel”
2026-03-11 16:37:22 +04:00
parent 64bd495cf9
commit 2ca3137c0b
5 changed files with 108 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# 2026-03-11
# variables.tf
variable "token" {
description = "JWT токен облака"
type = string
sensitive = true
}
variable "pg_dsn" {
description = "DSN подключения к PostgreSQL"
type = string
default = "postgres://sless:sless-pg-password@postgres.sless.svc.cluster.local:5432/sless?sslmode=disable"
}