Skip to content

dbt Cloud

Only use the following steps for "dbt Cloud" environments. If you have a dbt Core environment, use the required config instructions for "dbt Core" environments.

dbt Cloud integration is available as beta functionality

Enable dbt Cloud Integration by adding an API key

dbt Cloud integration in Power User VSCode extension requires an API key. There are also multiple preview features in the extension including generate dbt documentation, column lineage, query explanation, generate dbt model from SQL that are also enabled with an API key.

You can get an API key for free by signing up at www.altimate.ai

You need to add the API key from "Settings->API key" in your Altimate instance to the VSCode extension settings. You also need to add "Instance name" in the extension settings. Please get your instance name from your Altimate AI URL. If your URL for Altimate instance is - "companyx.app.myaltimate.com", then instance name is "companyx".

Go to the VSCode extension settings, and then add an API key and instance name.

Here's a demo of how to add an instance name and an API Key to the extension settings

Need to setup environment variables? Refer to this section

This method will save a bunch of time for you, and you can also validate your configuration. Setup wizard will help you in associating sql files with jinja-sql, selecting the right Python interpreter, make sure dbt dependencies are correctly installed etc. In the end, it will also validate your configuration.

You can start the setup wizard by clicking on dbt status icon in bottom status bar, and performing following necessary steps as shown in the recorded demo below:

Here are the steps covered in the setup wizard

Select Python Interpreter

Click on the action button - "Select Python Interpreter" and choose your preferred python interpreter. Usually, choosing interpreter that's recommended, or mapped to your virtual environment software (e.g. venv) as per the list is a good idea. If you know the path of your Python envionment, you can choose it from the list or if the path is not present there, you can enter it manually.

If needed, please run 'where python' command on terminal to see if it shows path to Python interpreter that you are using.

Install dbt

If dbt is not installed in your environment (dbt status icon on bottom status bar will show it), Click on "Install dbt Cloud" button in the next step. This will install latest version of dbt Cloud CLI in your environment.

Validate Project

Last step is clicking on button - "Validate Project" It will run a bunch of checks to make sure your dbt environment and project are setup correctly. If there are some issues, it will tell you exactly what's wrong as well.

If you still can't get the extension setup correctly, please check the troubleshooting page

Recorded Demo

Questions and Answers

Is dbt Cloud integration free?

Answer: Yes, integration with dbt Cloud is free and treated the same as integration with dbt Core. It will not count towards the usage quota.

Image

Why do I need to add the Altimate API key?

The API key is necessary for authentication with our backend. VSCode supports login-based authentication, but it often logs out between sessions, which can disrupt the workflow. The API key provides a more stable and streamlined experience. This is particularly beneficial for large teams, allowing them to integrate the key into their deployment secrets when setting up VSCode as a remote environment. In the future, integration with Cloud Service tokens might be necessary for deeper cloud interactions, thus having the Altimate integration in place from the start makes sense.

What benefits does registering an API key provide?

A direct line of communication with our users is established with the authentication in place. This is essential for efficiently communicating hotfixes, new releases, and deprecation warnings. It helps to minimize operational challenges and ensures that users are not left with outdated versions or unaware of updates due to the limitations of VSCode or lack of IDE restarts. Our main goal is to prevent any disruption in your development environment and to support our users proactively.

What if I don't want to use preview features or accidentally send data to Altimate?

We understand the concern about using preview features and the risk of accidental data transmission. To address this, we have implemented stringent data security practices, which you can review in our security FAQ. Our solutions have passed security reviews by several large organizations in the US, and we are open to undergoing similar reviews for your organization. Additionally, we are working on making some preview features available offline through our open-source Python CLI package.

How are you addressing concerns about data transmission in preview features?

To directly address concerns about data transmission, we have added a "local-mode-only" setting in VSCode. If enabled, this setting prevents backend calls for any feature except authentication. This setting can be reviewed by your security team since our client code is open-source.

Add the following setting in vscode settings.json

{
   dbt.isLocalMode: True
}