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