Skip to content

Commit 526fe63

Browse files
authored
Merge branch 'current' into mirnawong1-patch-28
2 parents a6eb559 + 797627d commit 526fe63

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

website/docs/docs/core/connect-data-platform/connection-profiles.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,27 @@ jaffle_shop:
3939
dbname: jaffle_shop
4040
schema: dbt_alice
4141
threads: 4
42+
43+
prod: # additional prod target
44+
type: postgres
45+
host: prod.db.example.com
46+
user: alice
47+
password: <prod_password>
48+
port: 5432
49+
dbname: jaffle_shop
50+
schema: analytics
51+
threads: 8
4252
```
4353
4454
</File>
4555
56+
To add an additional target (like `prod`) to your existing `profiles.yml`, you can add another entry under the `outputs` key.
4657

4758
## About the `profiles.yml` file
4859

49-
In your `profiles.yml` file, you can store as many profiles as you need. Typically, you would have one profile for each warehouse you use. Most organizations only have one profile.
60+
In your `profiles.yml` file, you can store as many profiles as you need. Typically, you would have one profile for each warehouse you use. Most organizations only have one profile.
5061

51-
For information about configuring advanced options, see [the `profiles.yml` reference page](/docs/core/connect-data-platform/profiles.yml).
62+
or information about configuring advanced options, see [the `profiles.yml` reference page](/docs/core/connect-data-platform/profiles.yml).
5263

5364
## About profiles
5465

website/docs/docs/core/connect-data-platform/profiles.yml.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ If you're using dbt Cloud, you can [connect to your data platform](/docs/cloud/c
1313

1414
This section identifies the parts of your `profiles.yml` that aren't specific to a particular data platform. For specific connection details, refer to the relevant page for your data platform.
1515

16+
To add an additional target (like `prod`) to your existing `profiles.yml`, you can add another entry under the `outputs` key.
17+
1618
<VersionBlock lastVersion="1.7">
1719

1820
:::warning Global configs

0 commit comments

Comments
 (0)