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
2
votes
2 answers

Azure Web App PaaS (App Service Plan) with Azure SQL connection inside vNet performance vs outside vNet

I have the following setup: |--------------------- Internet -------------------------| WebApp <---- non-vNet traffic ----> Azure SQL Db WebApp and Azure SQL Db are in the same data centre. There is currently no vNet. There's a lot of…
theyetiman
  • 8,514
  • 2
  • 32
  • 41
2
votes
1 answer

How to add the existing virtual network into Azure SQL database using Azure ARM Template?

Currently I am working on to deploy the Azure SQL Database into exisiting virtual network using Azure ARM templates. azuredeploy.json { "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", …
Pradeep
  • 5,101
  • 14
  • 68
  • 140
2
votes
2 answers

Expose containers to private network

I am looking for a way to create a docker cluster (probably kubernetes) on azure, and expose the containers only via a vnet to my datacenter. Is such a setup possible? That is that the container services can only be access via the vpn that is…
Wouter
  • 371
  • 2
  • 12
2
votes
1 answer

Configure Azure App Service without public URL

I am trying to deploy an Azure App Service from Visual Studio 15.2. Specifically I am trying to deploy this following service: https://github.com/Microsoft/Azure-SQL-DB-auditing-OMS-integration to ingest audit logs from SQL Data Warehouse to OMS.…
1
vote
0 answers

Azure Container App "InvalidParameterValueInContainerTemplate" Custom Vnet

I'm trying to deploy a quickstart image to my azure container environment and am receiving the following error; The following field(s) are either invalid or missing. Field 'template.containers.simple-hello-world-container-image' is invalid with…
1
vote
1 answer

Route internet traffic over vnet peering

I am attempting to route internet traffic from a Japan VM, running Windows Server 2022 over a peered vnet to East US with a Windows Server 2022 VM using RRAS. Esentially force tunneling without a S2S requirement The configuration is as follows Japan…
Magoogle
  • 11
  • 1
1
vote
0 answers

App service in a VNet ,Nsg returns 403 forbidden error

I am running my backend API's in azure app service. Trying to secure my API's that can only be access from certain resources. When Access the API it gives Error 403 - Forbidden I have done: .Created a VNET and attach Nsg with it .Add all IP's in a…
1
vote
1 answer

Terraform - Feature Create Swift Virtual Network is not allowed for a free trial subscription - on Pay As You Go subscription

I'm trying to use azurerm_app_service_virtual_network_swift_connection with azurerm_linux_function_app but am getting this error even though I'm on a Pay As You Go sub. │ Error: creating/updating App Service VNet association between "rd-func8-func"…
1
vote
1 answer

Azure Vnet Peering initiated state when run with Terraform

I deployed vnet peerings with terraform. But it was stuck on initiated status. When i tried manually with same values there was no problem. How can i fix it? resource "azurerm_virtual_network_peering" "spoke_aks_peering" { virtual_network_name …
1
vote
1 answer

Azure Postgres Flexible Server Vnet

I have azure flexible postgres instance with vnet integration. It work fine with my webapp integration. However, i would to have a on-premise external connection to this pg instance. Is there a way to do that with flexible postgres vnet ? Thanks
Mascence
  • 21
  • 2
1
vote
1 answer

When I Create a CloudPool used SubnetId, I got a "BadRequest"

I want to create a cloudpool with vnet,I typed codes: 1.use AzureAD Task tokenProvider() => GetAuthenticationTokenAsync(); using BatchClient batchClient = BatchClient.Open(new BatchTokenCredentials(_param.BatchAccountUrl,…
1
vote
1 answer

Failed to setup Custom Domain for APIM using PowerShell script

I am trying to setup custom domain for my APIM instance using below script [CmdletBinding()] param ( [String] $ResourceGroupName, [String] $Hostname, [String] $ApimServiceName, [string] …
1
vote
1 answer

How to set "use remote VNET gateway" on Azure network peering via Terraform

How can I set use remote VNET's gateway on a hub peer using terraform? On the spoke, I'm trying to set the below highlighted "Use the remote virtual network's gateway or Route Server" via terraform: I've tried setting the use_remote_gateways=true…
capdragon
  • 14,565
  • 24
  • 107
  • 153
1
vote
1 answer

Is there a way to prefer Azure Service Endpoint over Private Endpoint?

Scenario: I have a hub & spoke architecture with Azure Firewall, which acts as my DNS server to VNets in all spokes. I also have a VPN connection, which I use to transfer data to my Azure Data Lake Storage Gen2. For that I use Private Endpoint,…
1
vote
1 answer

Resolving Azure Service Names to Private VNET IPs Within AKS Pods?

I have created an AKS cluster using CNI networking as we needed finer control over the address space used by the cluster's vnet. The vnet I associated with the cluster resides in the same resource group as the aks cluster, and several other…
Ken
  • 311
  • 1
  • 10
1 2
3
20 21