From b9cb84beb331590b9802a2d019d3994a9e7a84fd Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Sat, 13 Dec 2025 22:29:23 +0000 Subject: [PATCH] env variables --- db/atlas/atlas.hcl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/db/atlas/atlas.hcl b/db/atlas/atlas.hcl index bbe2d09..0cfc5a6 100644 --- a/db/atlas/atlas.hcl +++ b/db/atlas/atlas.hcl @@ -1,6 +1,5 @@ env "stripe_invoice_dev" { - url = "postgres://"+env("POSTGRES_USER")+":"+env("POSTGRES_PASSWORD")+ - "@postgres.default.svc.cluster.local:5432/stripe_invoice?sslmode=disable" + url = "postgres://${env("POSTGRES_USER")}:${env("POSTGRES_PASSWORD")}@postgres.default.svc.cluster.local:5432/stripe_invoice?sslmode=disable" migration { dir = "file://./db/atlas/stripe_invoice/migrations" @@ -8,8 +7,7 @@ env "stripe_invoice_dev" { } env "stripe_invoice_prod" { - url = "postgres://"+env("POSTGRES_USER")+":"+env("POSTGRES_PASSWORD")+ - "@postgres.default.svc.cluster.local:5432/stripe_invoice_prod?sslmode=disable" + url = "postgres://${env("POSTGRES_USER")}:${env("POSTGRES_PASSWORD")}@postgres.default.svc.cluster.local:5432/stripe_invoice_prod?sslmode=disable" migration { dir = "file://./db/atlas/stripe_invoice/migrations"