From b696215443b24192c466b58bf9afbeca7a3ce943 Mon Sep 17 00:00:00 2001 From: mirnawong1 <89008547+mirnawong1@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:49:26 +0100 Subject: [PATCH] Update configure-cloud-cli.md --- website/docs/docs/cloud/configure-cloud-cli.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/docs/docs/cloud/configure-cloud-cli.md b/website/docs/docs/cloud/configure-cloud-cli.md index 4b0e67ad4a2..c45683daacb 100644 --- a/website/docs/docs/cloud/configure-cloud-cli.md +++ b/website/docs/docs/cloud/configure-cloud-cli.md @@ -24,6 +24,7 @@ import CloudCLIFlag from '/snippets/_cloud-cli-flag.md'; Once you install the dbt Cloud CLI, you need to configure it to connect to a dbt Cloud project. 1. Ensure you meet the prerequisites above. + 2. Download your credentials from dbt Cloud by clicking on the **Try the dbt Cloud CLI** banner on the dbt Cloud homepage. 3. Follow the banner instructions and download the config file to `~/.dbt/dbt_cloud.yml` ( Mac and Linux users) or `C:\Users\yourusername\.dbt\dbt_cloud.yml` (Windows users). The config file looks like this: @@ -41,10 +42,15 @@ Once you install the dbt Cloud CLI, you need to configure it to connect to a dbt - project-id: "" account-host: "" api-key: "" + ``` 4. After downloading the config file, navigate to a dbt project in your terminal: + ```bash + cd ~/dbt-projects/jaffle_shop + ``` + 5. In your `dbt_project.yml` file, ensure you have or include a `dbt-cloud` section with a `project-id` field. The `project-id` field contains the dbt Cloud project ID you want to use. ```yaml