Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
further updates to sample profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomurino committed Jul 4, 2020
1 parent 8cb9205 commit 6935230
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions dbt/include/presto/sample_profiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,23 @@ default:
dev:
type: presto
method: none # optional, one of {none | ldap | kerberos}
user: [user]
user: [dev_user]
password: [password] # required if method is ldap or kerberos
database: [database name]
host: [hostname]
port: [port number]
schema: [your dbt schema]
schema: [dev_schema]
threads: [1 or more]

prod:
type: presto
method: none # optional, one of {none | ldap | kerberos}
user: [prod_user]
password: [prod_password] # required if method is ldap or kerberos
database: [database name]
host: [hostname]
port: [port number]
schema: [prod_schema]
threads: [1 or more]

target: dev

0 comments on commit 6935230

Please sign in to comment.