# Configuring Azure Private Link for a self-hosted service

dbt platform | Enterprise+

Available to certain Enterprise tiers

This feature is available on the following dbt Enterprise tiers:

* Enterprise+
* Virtual Private

To learn more about these tiers, contact us at <sales@getdbt.com>.

Azure Private Link enables secure, private connectivity between dbt and your self-hosted services. These services may include version control systems (VCS), data warehouses, or any other applications you manage. With Private Link, you do not need to expose your service to the public internet. All communication occurs over a private network, significantly enhancing security. For more details, refer to the Azure [Private Link documentation](https://learn.microsoft.com/en-us/azure/private-link/private-link-overview).

## What this guide covers

The focus of this guide is not on any particular service or backend architecture, but on the [Private Link Service](#terminology) that interconnects dbt with your self-hosted service. This process should be standard across most use cases.

[![The scope of this guide](/img/docs/dbt-platform/az-self-hosted-privatelink/scope-of-guide.png?v=2 "The scope of this guide")](#)The scope of this guide

Out of scope

This guide does not cover the configuration or troubleshooting of your self-hosted service, load balancer, or backend pool health, due to the virtually limitless ways these environments can be configured. While dbt Support may assist with such issues on a best-effort basis, we recommend engaging [Azure Support](https://azure.microsoft.com/en-us/support/) to expedite resolution.

## Audience

This guide is intended for cloud network administrators or engineers responsible for configuring and maintaining secure network communications within your organization's Microsoft Azure environment.

## Terminology

This guide uses several important terms related to Azure Private Link. Understanding these definitions will help ensure successful implementation. For a more detailed explanation of these concepts, refer to the [Azure Private Link Service documentation](https://learn.microsoft.com/en-us/azure/private-link/private-link-service-overview).

* **Consumer:** In this context, the Consumer is dbt, which creates a private endpoint to connect to your Private Link Service.
* **Service provider:** Your organization, which owns and operates the service behind the Standard Load Balancer and creates the Private Link Service.
* **Private Link Service:** The Azure resource that exposes your service to consumers, allowing them to create private endpoints to access it. This is tied to a Standard Load Balancer frontend IP configuration.
* **Alias:** A globally unique name generated by Azure for your Private Link Service. You share this alias with dbt Support to establish the connection to your service as a consumer.
* **Standard Load Balancer:** The required load balancer type that sits in front of your service. Your application must run behind a Standard Load Balancer to use Private Link Service.
* **NAT subnet:** A dedicated subnet in your VNet used for Source Network Address Translation (SNAT) IP addresses for the Private Link Service. Consumer traffic appears to originate from this pool of private IP addresses.

## Prerequisites

Before you begin, make sure to review the following requirements:

1. **Supported Load Balancer Types**

   dbt has officially validated Private Link functionality with the following load balancer type:

   * Standard Load Balancer (Internal)

   > While other configurations may be compatible with Azure Private Link Services, this guide assumes your service is configured behind a Standard Internal Load Balancer. For more details, see the [Azure Load Balancer documentation](https://learn.microsoft.com/en-us/azure/load-balancer/load-balancer-overview).

2. **Service Health**

   * Confirm that your service or application is operational and healthy behind the designated load balancer before proceeding.

3. **dbt Azure Subscription ID**

   * Contact [dbt Support](mailto:support@getdbt.com) to obtain the dbt Azure subscription ID. You will need this in order to allow dbt to connect to your Private Link Service.

## Instructions

1. Log in to the [Azure Portal](https://portal.azure.com).
2. Navigate to the Azure Subscription and Resource Group where your self-hosted service is located.

### Create a NAT subnet for the Private Link service

3. Under the **Resources** section, search for **Virtual network** and go into the VNet where your self-hosted service is running.

4. Expand the **Settings** in the left side panel, and go into **Subnets**. Click the **+ Subnet** button to create a new subnet.

5. In the subnet creation panel:

   a. **Subnet purpose:** Leave as **Default**

   b. **Name:** Provide a descriptive name, such as **private-link-nat-subnet**

   c. **IPv4 address range:** Choose the appropriate CIDR block from your VNet that you want to create a NAT subnet from. In this example, the CIDR is 10.30.0.0/16, as seen in the screenshot below.

   d. **Starting address:** Your desired starting address of the new subnet

   e. **Size:** The smallest available size is recommended (for example, /28).

   f. Check the **Enable private subnet (no default outbound access)** checkbox.

   g. **NAT gateway:** Leave as **None**

   h. Leave **Network security group** and **Route table** fields as **None** unless your environment requires specific values here.

   i. Leave all remaining fields as their default values.

   j. Click **Add** to create the subnet.

[![Screenshot of step 3: Search for VNet of self-hosted service](/img/docs/dbt-platform/az-self-hosted-privatelink/vnet-search.png?v=2 "Screenshot of step 3: Search for VNet of self-hosted service")](#)Screenshot of step 3: Search for VNet of self-hosted service

[![Screenshot of steps 4-5: NAT Subnet creation for Private Link Service](/img/docs/dbt-platform/az-self-hosted-privatelink/nat-subnet-creation.png?v=2 "Screenshot of steps 4-5: NAT Subnet creation for Private Link Service")](#)Screenshot of steps 4-5: NAT Subnet creation for Private Link Service

### Create a Private Link service

6. After the subnet creation has completed, in the search field at the top-middle of the portal, search for **Private link services**, and click on its page.

7. Click the **+ Create** button.

8. In the Create private link service page:

   **Under Basics**

   a. Select your **Subscription** and **Resource group**

   b. **Name:** Give a descriptive name, such as **pls-to-my-vcs**

   c. **Region:** Select the region where your self-hosted service is located

   **Under Outbound settings**

   d. **Load balancer:** In the dropdown, choose the Standard Internal Load Balancer that is in front of your self-hosted service

   e. **Load balancer frontend IP address:** Choose the frontend IP configuration for your load balancer

   f. **Source NAT subnet:** Select the NAT subnet you created in step 5 above

   g. **Source NAT Virtual network:** This will auto-populate based on your subnet selection

   h. **Enable TCP proxy V2:** Leave this disabled

   **Under Access security**

   i. Select **Restricted by subscription**

   j. Click **Add subscriptions** and add dbt's Azure subscription ID that you acquired from support

   k. Set **Request Auto-approve** selection to **Yes** for dbt's subscription

   l. Click **Next: Review + create**, then **Create**

[![Screenshot of step 8: Creation of Azure Private Link Service](/img/docs/dbt-platform/az-self-hosted-privatelink/privatelink-service-creation.png?v=2 "Screenshot of step 8: Creation of Azure Private Link Service")](#)Screenshot of step 8: Creation of Azure Private Link Service

9. After the Private Link Service has been created, click on it to open its details page.
10. Copy the **Alias** value (this is the identifier you'll share with dbt Support).

[![Screenshot of step 10: Copy the Private Link Service Alias](/img/docs/dbt-platform/az-self-hosted-privatelink/alias-info.png?v=2 "Screenshot of step 10: Copy the Private Link Service Alias")](#)Screenshot of step 10: Copy the Private Link Service Alias

### Providing dbt Support with connection details

11. Add the required information to the template below, and submit your request to [dbt Support](mailto:support@getdbt.com):

 Support request email template

```text
Subject: New Azure Self-hosted Private Link Request

- Type: Self-hosted Private Link
- Platform/Service (for example, Postgres, Starburst, Spark, GitLab, etc.):
- dbt platform account URL:
- Private Link Service Alias:
- Custom DNS (if HTTPS/TLS):
  - DNS record:
- Service Region (for example, East US, West Europe):
- dbt Azure environment (EMEA):
```

dbt Labs will work on your behalf to complete the private connection setup. Please allow 3-5 business days for this process to complete. Support will contact you when the endpoint is available.

## Troubleshooting

If the Private Link endpoint has been provisioned and configured in dbt but connectivity is still failing, check the following in your networking setup to ensure requests and responses can be successfully routed between dbt and your service.

### Configuration checklist

1. **Private Link Service status**

   In the Azure Portal, navigate to your Private Link Service and verify the **Provisioning state** is **Succeeded**. Check the **Private endpoint connections** tab to confirm dbt's connection shows as **Approved**.

2. **Load balancer backend health**

   Navigate to your Standard Load Balancer and check the **Backend pool** health. At least one backend instance must be **Healthy**. Unhealthy backends could indicate the service is down or that a Network Security Group (NSG) is blocking traffic from the load balancer.

3. **NAT subnet configuration**

   Verify the NAT subnet has sufficient IP addresses available. Azure Private Link Service uses these IPs for SNAT. If the subnet is exhausted, new connections may fail.

4. **Network Security Groups**

   If you have NSGs applied to the NAT subnet or backend subnet, ensure they allow traffic appropriately:

   * NAT subnet: Recommended to leave NSG as **None** (as noted in the setup instructions)
   * Backend subnet: Must allow traffic from the load balancer's frontend IP

### Monitoring

To help isolate connection issues, use Azure's monitoring tools:

#### Private Link Service metrics

In the Azure Portal, navigate to your Private Link Service and click **Metrics**. Monitor:

* **Bytes In/Out** — Confirms traffic is flowing through the service
* **NAT Port Usage** — High usage may indicate the NAT subnet needs more IPs

#### Load Balancer metrics

Navigate to your Standard Load Balancer and click **Metrics**. Monitor:

* **Health Probe Status** — Shows backend health over time
* **Byte Count** — Confirms traffic is reaching the load balancer
* **SNAT Connection Count** — Tracks outbound connections

For more information, see [Azure Private Link monitoring](https://learn.microsoft.com/en-us/azure/private-link/private-link-service-overview#monitoring) and [Load Balancer monitoring](https://learn.microsoft.com/en-us/azure/load-balancer/monitor-load-balancer).

## Was this page helpful?

YesNo

[Privacy policy](https://www.getdbt.com/cloud/privacy-policy)[Create a GitHub issue](https://github.com/dbt-labs/docs.getdbt.com/issues)

This site is protected by reCAPTCHA and the Google [Privacy Policy](https://policies.google.com/privacy) and [Terms of Service](https://policies.google.com/terms) apply.
