Profile YML
# profile.yml
default:
adapters:
default_bigquery:
type: bigquery
creds: "{{ env('GOOGLE_APPLICATION_CREDENTIALS') }}
postgres_staging:
type: postgres
autocommit: True
host: "{{ env('POSTGRES_STAGING_HOST') }}"
port: 5432
database: staging_db
user: "{{ env('POSTGRES_STAGING_USER') }}"
password: "{{ env('POSTGRES_STAGING_PASSWORD') }}"
postgres_prod:
type: postgres
autocommit: True
host: "{{ env('POSTGRES_PROD_HOST') }}"
port: 5432
database: prod_db
user: "{{ env('POSTGRES_PROD_USER') }}"
password: "{{ env('POSTGRES_PROD_PASSWORD') }}"
Last updated