Questions tagged [azure-private-link]

120 questions
0
votes
1 answer

Azure Automation Private Endpoint vs Azure Automation API

I want to avoid exposure of my Azure automation account from the public internet. According to the documentation this is possible by configuring a private endpoint connection and disable public access (Automation account – Networking – Public access…
0
votes
1 answer

Azure SQL Server VNet integration fails as soon as private endpoint is created

Looks like VNet integration for Azure SQL Server breaks as soon as the VNet is connected to a private DNS service and that SQL Server has a private endpoint in a different VNet. The problem starts appearing under following conditions: App Service…
0
votes
1 answer

How to create azure standard logic app with vnet integration to enable access between storage accounts in different azure subscriptions?

I have dev and prod azure subscriptions, where there are separate virtual networks like dev-virtual-nw and prod-virtual-nw. There are storage accounts under both subscriptions, which don't have access to each other as they both are in different…
0
votes
1 answer

Azure Logic App Standard vnet integrated with a stateful workflow can't connect to a service bus behind a private endpoint

When we want to configure the step 'Get message from a service bus topic (peek lock)', we have to choose the topic. When we click on the dropdown we get a 401 unauthorized' exception message. We use managed identity of the logic app to authenticate…
0
votes
1 answer

Azure VNET with subnet segmentation for CosmosDB access

Is it possible to have a single VNET with subnets segmentation and allow only some FunctionApps (in subnet "A") to access CosmosDB via Private Link while blocking DB access to other FunctionApps (in subnet "B") on a different…
HK15
  • 47
  • 9
0
votes
1 answer

Web API inaccessible from APIM when both services have Private Link enabled

I'm currently tasked with setting up a secure, non-public connection between APIM and a Web API, and I've opted to use Private Endpoints for both services. The problem is that when Private Link is enabled on both, APIM can no longer connect to the…
0
votes
1 answer

Azure function integrating with Private endpoint gives error

I am trying to deploy azure function app and integrate it with private endpoint using Bicep template. The deployment is successful, however the function app link gives the below error. Your connection isn't private. I have included the DNS profile.…
Vin
  • 1
  • 3
0
votes
0 answers

Azure SDK JAVA - How to use ProxyOptions to connect to the proxy URL and how to pass the required path to the httpClient along with the hostname

I am trying utilise the ProxyOptions to re-route the blob upload to a proxy URL. In this case localhost Demo Project: Gradle Dependency: implementation 'com.azure:azure-storage-blob' implementation 'com.azure:azure-core' implementation…
0
votes
1 answer

What Azure CDN services support Private Link?

I see Azure Front Door Premium (CDN) supports Private Link. For example, Azure Front Door Premium can connect to Azure Storage as its origin via Private Link. I assume other Azure CDN offerings support Private Link for origins not just Front Door…
thomp361
  • 21
  • 3
0
votes
1 answer

How to setup private-link using Terraform to access storage-account?

I need to test my azure private-endpoint using the following scenario. We have a virtual netwroks with two sub-nets (vm_subnet and storage_account_subnet) The virtual-machine (vm) should be able to connect to the storage-account using a…
Sal-laS
  • 11,016
  • 25
  • 99
  • 169
0
votes
2 answers

How to disconnect private link from Azure Front Door Origin via Powershell

We have deployed an Azure front door premium instance connecting to an App Service instance over private endpoints using Az powershell, namely New-AzFrontDoorCdnOrigin then approving with Approve-AzPrivateEndpointConnection. This all works…
0
votes
1 answer

Serve public images from Blob Storage via Private Link

I see that I can do this with Azure Front Door Premium (CDN). Azure Front Door can securely access the Storage Account via the private link while not exposing the Storage Account to the public internet, works great and very secure. The issue is the…
0
votes
0 answers

Azure SQL privatelink - dig/nslookup/ping work, but studio connection fails

I have a SQL DB in Azure, defined as Private Link. Using "sort of" a VPN, my local machine can resolve the private IP to it correctly - nslookup, dig, ping - all work. nslookup myserver.database.windows.net Server: 100.100.100.153 Address: …
ranshe
  • 67
  • 7
0
votes
2 answers

"Http2ConnectionException: HTTP/2 error code 'PROTOCOL_ERROR' (0x1)" error when enabling VNet integration for Azure Function App

When enabling VNet integration on an Azure Function App to communicate with outbound internal services over private endpoints, an HTTP 502 Bad Gateway or HTTP 504 Gateway Timeout error occurs. If we disable VNet integration, the function app starts…
HXK8
  • 41
  • 4
0
votes
0 answers

Getting azure subscription accesToken without az installed (for authorizing private endpoint from snowflake)

I am trying to setup azure privatelink on several snowflake accounts and I am terraforming all of the steps like creating the private endpoints and authorizing the connection from snowflake side (I am following this tutorial). In the docs they are…