-
Notifications
You must be signed in to change notification settings - Fork 220
docs: Add Fabric cloud integration content #2170
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
devin-ai-integration
wants to merge
2
commits into
docs
Choose a base branch
from
devin/1774320697-fabric-cloud-docs
base: docs
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+65
−36
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| import IpAllowlist from '/snippets/cloud/integrations/ip-allowlist.mdx'; | ||
| import PermissionsAndSecurity from '/snippets/cloud/integrations/permissions-and-security.mdx'; | ||
|
|
||
| This guide contains the necessary steps to connect a Microsoft Fabric environment to your Elementary account. | ||
|
|
||
| ### Prerequisites | ||
|
|
||
| - A Microsoft Fabric workspace with a warehouse or lakehouse SQL endpoint. | ||
| - An Azure AD (Entra ID) app registration (service principal) with access to your Fabric workspace. | ||
| - ODBC Driver 18 for SQL Server is used under the hood — no action needed on your side, it is pre-installed in Elementary Cloud. | ||
|
|
||
| ### Create an Azure AD service principal | ||
|
|
||
| If you don't already have a service principal configured: | ||
|
|
||
| 1. In the [Azure portal](https://portal.azure.com), go to **Azure Active Directory** > **App registrations** > **New registration**. | ||
| 2. Give it a name (e.g. `elementary-fabric`) and register it. | ||
| 3. Note the **Application (client) ID** and **Directory (tenant) ID**. | ||
| 4. Go to **Certificates & secrets** > **New client secret**, create a secret, and copy the **Value**. | ||
| 5. In your Fabric workspace, add the service principal as a **Viewer** in the workspace settings. This is the minimum workspace-level role required for connectivity. | ||
|
|
||
| ### Grant minimal permissions | ||
|
|
||
| Elementary Cloud only requires **read-only access to the Elementary schema** and **metadata access** (e.g. `INFORMATION_SCHEMA`). We recommend granting only the minimum permissions needed. | ||
|
|
||
| After the service principal can connect, run the following statements in your Fabric warehouse with admin permissions: | ||
|
|
||
| ```sql | ||
| -- Grant read-only access to the Elementary schema | ||
| GRANT SELECT ON SCHEMA :: [<your_elementary_schema>] TO [<service_principal_name>]; | ||
|
|
||
| -- Grant access to view metadata (table definitions, columns, etc.) | ||
| GRANT VIEW DEFINITION ON SCHEMA :: [<your_elementary_schema>] TO [<service_principal_name>]; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure what this does - looks like it's specific for our schema, but the comment mention metadata. |
||
| ``` | ||
|
|
||
| Replace `<your_elementary_schema>` with the name of your Elementary schema (usually `[your dbt target schema]_elementary`), and `<service_principal_name>` with the display name of your service principal. | ||
|
|
||
| <PermissionsAndSecurity /> | ||
|
|
||
| ### Fill the connection form | ||
|
|
||
| In the Elementary platform, go to **Environments** in the left menu, and click on the **Create Environment** button. | ||
| Choose a name for your environment, and then choose **Fabric** as your data warehouse type. | ||
|
|
||
| Provide the following fields: | ||
|
|
||
| - **Server**: The Fabric SQL connection endpoint. You can find this in the Fabric portal under your warehouse settings. It typically looks like `<identifier>.datawarehouse.fabric.microsoft.com`. | ||
| - **Port**: The port to connect to. Default is `1433`. | ||
| - **Tenant ID**: The Azure AD (Entra ID) Directory (tenant) ID. | ||
| - **Client ID**: The Azure AD Application (client) ID of the service principal. | ||
| - **Client Secret**: The client secret value you generated for the service principal. | ||
|
|
||
| Then, for each dbt project in your environment, provide: | ||
|
|
||
| - **Database name**: The name of the Fabric warehouse or lakehouse SQL endpoint. | ||
| - **Elementary schema**: The name of your Elementary schema. Usually `[your dbt target schema]_elementary`. | ||
|
|
||
| <IpAllowlist /> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you mention it?