The sites/virtualNetworkConnections resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Web/sites/virtualNetworkConnections resource, add the following JSON to your template.
{
"type": "Microsoft.Web/sites/virtualNetworkConnections",
"apiVersion": "2022-09-01",
"name": "string",
"kind": "string",
"properties": {
"certBlob": "string",
"dnsServers": "string",
"isSwift": "bool",
"vnetResourceId": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Web/sites/virtualNetworkConnections' |
apiVersion | The resource api version | '2022-09-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
kind | Kind of resource. | string |
properties | Core resource properties | VnetInfo |
Name | Description | Value |
---|---|---|
certBlob | A certificate file (.cer) blob containing the public key of the private key used to authenticate a Point-To-Site VPN connection. |
string |
dnsServers | DNS servers to be used by this Virtual Network. This should be a comma-separated list of IP addresses. | string |
isSwift | Flag that is used to denote if this is VNET injection | bool |
vnetResourceId | The Virtual Network's resource ID. | string |