juntekim.com/db/atlas/atlas.hcl
2025-12-28 12:58:07 +00:00

17 lines
526 B
HCL

env "stripe_invoice_dev" {
url = "postgres://${getenv("POSTGRES_USER")}:${getenv("POSTGRES_PASSWORD")}@postgres-dev.default.svc.cluster.local:5432/stripe_invoice?sslmode=disable"
migration {
dir = "file://./db/atlas/stripe_invoice/migrations"
}
}
env "stripe_invoice_prod" {
url = "postgres://${getenv("POSTGRES_USER")}:${getenv("POSTGRES_PASSWORD")}@postgres-prod.default.svc.cluster.local:5432/stripe_invoice_prod?sslmode=disable"
migration {
dir = "file://./db/atlas/stripe_invoice/migrations"
}
}