【发布时间】:2019-02-01 19:12:10
【问题描述】:
我正在尝试创建一个具有两个私有 IP 地址(主要/次要)的虚拟机。我有一个工作 ARM 模板将创建主要,但我看不到在哪里指定次要。
"ipConfigurations": [
{
"name": "ipconfig1",
"properties": {
"privateIPAllocationMethod": "Static",
"privateIPAddress": "10.10.100.4",
"subnet": {
"id": "[resourceId('Microsoft.Network/virtualNetworks/subnets', 'myVnet, 'mySubnet')]"
}
}
}
【问题讨论】:
标签: azure arm-template azure-template