Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions profiles.example.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# credentials supplied via GitHub Actions env vars or secrets.
dbt_analytics_engineering:
target: ci
outputs:
ci:
type: sqlserver
driver: "ODBC Driver 18 for SQL Server"
server: "{{ env_var('DBT_SQLSERVER_HOST', 'localhost') }}"
port: "{{ env_var('DBT_SQLSERVER_PORT', '1433') | int }}"
database: "{{ env_var('DBT_SQLSERVER_DATABASE', 'master') }}"
schema: "{{ env_var('DBT_SQLSERVER_SCHEMA', 'dbt_ci') }}"
user: "{{ env_var('DBT_SQLSERVER_USER', 'sa') }}"
password: "{{ env_var('DBT_SQLSERVER_PASSWORD') }}"
trust_cert: true
encrypt: true
Loading