The Azure Quickstart templates are currently available in English
This sample shows how to use configure a virtual network and private DNS zone to access a Service Bus namespace via private endpoint.
此 Azure Resource Manager (ARM) 模板由社区的某个成员(而不是由 Microsoft)创建。每个 ARM 模板都根据其所有者(不是 Microsoft)的许可协议向你授予许可。Microsoft 不对由社区成员提供并授予许可的 ARM 模板负责,并且不针对安全性、兼容性和性能进行筛选。社区 ARM 模板不由任何 Microsoft 支持计划或服务提供支持,按“原样”提供,没有任何种类的担保。
参数
参数名 | 说明 |
---|---|
location | Specifies the location for all the resources. |
virtualNetworkName | Specifies the name of the virtual network hosting the virtual machine. |
virtualNetworkAddressPrefix | Specifies the address prefix of the virtual network hosting the virtual machine. |
subnetName | Specifies the name of the subnet hosting the virtual machine. |
subnetAddressPrefix | Specifies the address prefix of the subnet hosting the virtual machine. |
serviceBusNamespaceName | Specifies the name of the Service Bus namespace. |
serviceBusNamespaceZoneRedundant | Enabling this property creates a Premium Service Bus Namespace in regions supported availability zones. |
serviceBusNamespaceCapacity | Specifies the messaging units for the Service Bus namespace. For Premium tier, capacity are 1,2 and 4. |
blobStorageAccountName | Specifies the globally unique name for the storage account used to store the boot diagnostics logs of the virtual machine. |
vmName | Specifies the name of the virtual machine. |
vmSize | Specifies the size of the virtual machine. |
imagePublisher | Specifies the image publisher of the disk image used to create the virtual machine. |
imageOffer | Specifies the offer of the platform image or marketplace image used to create the virtual machine. |
imageSku | Specifies the Ubuntu version for the VM. This will pick a fully patched image of this given Ubuntu version. |
authenticationType | Specifies the type of authentication when accessing the Virtual Machine. SSH key is recommended. |
adminUsername | Specifies the name of the administrator account of the virtual machine. |
adminPasswordOrKey | Specifies the SSH Key or password for the virtual machine. SSH key is recommended. |
diskStorageAccounType | Specifies the storage account type for OS and data disk. |
numDataDisks | Specifies the number of data disks of the virtual machine. |
osDiskSize | Specifies the size in GB of the OS disk of the VM. |
dataDiskSize | Specifies the size in GB of the OS disk of the virtual machine. |
dataDiskCaching | Specifies the caching requirements for the data disks. |
_artifactsLocation | Specifies the base URI where artifacts required by this template are located including a trailing '/' |
_artifactsLocationSasToken | Specifies the sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. Use the defaultValue if the staging location is not secured. |
scriptFileName | The name of the script to download from the URI specified by the scriptFilePath parameter. |
deployLogAnalytics | Specifies whether to deploy a Log Analytics workspace to monitor the health and performance of the virtual machine. |
workspaceName | Specifies the globally unique name of the Log Analytics workspace. |
workspaceSku | Specifies the SKU of the Log Analytics workspace. |
serviceBusNamespacePrivateEndpointName | Specifies the name of the private link to the storage account. |
blobStorageAccountPrivateEndpointName | Specifies the name of the private link to the boot diagnostics storage account. |
使用模板
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deployment安装和配置 Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-servicebus-private-endpoint/azuredeploy.json
命令行
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deployment安装和配置 Azure 跨平台命令行界面
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/201-servicebus-private-endpoint/azuredeploy.json