dbt - Production Deployment
Given the following
profiles.yml snippet, what database will dbt connect to when running with --target prod?
my_project:
outputs:
dev:
type: postgres
host: dev-db.example.com
dbname: dev_db
prod:
type: postgres
host: prod-db.example.com
dbname: prod_db
target: dev
