17 lines
525 B
HCL
17 lines
525 B
HCL
env "stripe_invoice_dev" {
|
|
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"
|
|
}
|
|
}
|
|
|
|
env "stripe_invoice_prod" {
|
|
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"
|
|
}
|
|
}
|