Questions tagged [vnet]

Questions regarding The Azure Virtual Network (VNet)

An Azure virtual network (VNet) is a representation of your own network in the cloud. It is a logical isolation of the Azure cloud dedicated to your subscription. You can fully control the IP address blocks, DNS settings, security policies, and route tables within this network.

https://learn.microsoft.com/en-us/azure/virtual-network/virtual-networks-overview

315 questions
10
votes
1 answer

Azure: Failed to add delegation to the existing subnet

I'm trying to include in an app service an existing VNET but I have this issue: Failed to add delegation to the existing subnet.: Delegations of subnet /subscriptions Cannot be changed from [] to [Microsoft.Web/serverfarms] because it is being used…
Julien
  • 249
  • 2
  • 9
9
votes
2 answers

Can Azure Functions be deployed to a Vnet?

Can Azure Functions be deployed inside a VNet? If I created an App Service environment in a VNet and then picked that App Service Plan when creating the Function, Would that mean that the Azure Function is deployed inside the VNet and have the same…
Tija
  • 1,691
  • 4
  • 20
  • 33
7
votes
2 answers

Connecting two App Services within the same VNet

I have two NodeJS App Services. They can connect to each other with no problem using the URL which is created for App Services by default. (That is through the public internet.) Then I successfully enabled VNet Integration for both App Services, and…
yellowtail
  • 435
  • 3
  • 12
7
votes
1 answer

Azure API Management resolving internal URL

We've implemented a setup as follows: App Service Environment having different app services exposing different APIs. This instance is configured as an internal instance, so no public access. We've configured an internal (private) DNS zone. This…
Jasper
  • 1,697
  • 2
  • 23
  • 48
5
votes
1 answer

Azure VNET Subnet delegation

Can someone help explain Subnet delegation in Azure? I've read the following article which don't really explain anything: https://learn.microsoft.com/en-us/azure/virtual-network/subnet-delegation-overview What is the purpose? When would I need it?
CodeMonkey
  • 3,418
  • 4
  • 30
  • 53
4
votes
2 answers

Limiting access to Storage Account from Azure Function Subnet

I have an azure function hosted on an (S1) App Service Plan. The Azure Function is integrated to a VNet subnet. This subnet has Microsoft.Storage and Microsoft.Web service endpoints enabled, and also it's delegated to Microsoft.Web/serverFarms On…
AbuShokry
  • 189
  • 1
  • 12
4
votes
2 answers

How to set selected networks in StorageAccount via ARM Template

I have the following ARM template to generate an storage account and add existing virtual networks: { "name": "test0deep0123", "type": "Microsoft.Storage/storageAccounts", "location": "West Europe", "apiVersion":…
Kaja
  • 2,962
  • 18
  • 63
  • 99
4
votes
1 answer

Azure VM gets disconnected from network very often

I have a Windows service running on Azure VM. The service constantly accesses KeyVaults and Web APIs to run some tasks. The logs in my service show this message sometimes while accessing keyvault. Most of the times service can access keyvault, but…
CrazyCoder
  • 2,194
  • 10
  • 44
  • 91
4
votes
0 answers

Azure App Service denied access to Storage Account when using Service Endpoint

Following the instructions on the Azure Blog, I'm trying to remove public access to our Storage Account and instead have our App Service app only access it via a Service Endpoint. The App Service and Service Plan are added to the same VNet, and I've…
x5657
  • 1,172
  • 2
  • 13
  • 26
4
votes
2 answers

VNET Integration for Azure function using Consumption plan

My azure function is running on a Consumption plan and it needs to access a resource running on a VM on a Azure VNET. The resource cannot be exposed via http. Is there a solution other then switching to App Service Plan?
Mayank
  • 908
  • 9
  • 14
3
votes
1 answer

How do I set a public static IP address to a storage account?

I have an Azure storage account with a blob endpoint of: 'blobstorageaccountname.blob.core.windows.net'. I want to choose a static IP Address, because some of my more zealous customers want to only allocate a known set of IP addresses through their…
OzBob
  • 4,227
  • 1
  • 39
  • 48
3
votes
1 answer

Fix for the Subnet Missing Required Delegation

I have a Azure Resource Group and it has a vnet. The vnet has a subnet which has two service endpoints configured namely Microsoft.keyVault and Microsoft.Storage and the subnet also has a subnet delegation to Microsoft.Web/serverFarms. Now I want…
MathGeek
  • 511
  • 6
  • 17
3
votes
1 answer

Azure Private Endpoints

Does creating a private endpoint for an azure service automatically completely lock it down from public access? or does this need to be explicitly done? I am checking for Azure Storage right now, but would like to know how it works for all Azure…
TeeDee
  • 1,450
  • 1
  • 13
  • 15
3
votes
3 answers

What is different azure function app and app service plan?

What is different azure function app and app service plan ? I think; Function app is a core layer - where hosted code and execute App service plan is higher layer of function app - it can be covering function app. For example, it can cover…
Thanh Nguyen Van
  • 10,292
  • 6
  • 35
  • 53
3
votes
1 answer

Unable to connect to Azure Function App after integrating into VNET

Problem Outline Azure Function App can not be accessed once it is integrated into a VNET and WEBSITE_VNET_ROUTE_ALL is set to 1. This is required so that the Function App can securely connect to SQL without making the SQL publicly…
1
2 3
20 21