我正在尝试使用 ARM 模板简单的 Linux VM 启动没有公共 DNS 的 Azure VM
但我不想让这个 VM 上的 Publick DNS 只是私有 IP。我试图删除以下与公共 IP 相关的部分
"publicIPAddressName": "myPublicIP",
"publicIPAddressType": "Dynamic",
和
{
"apiVersion": "[variables('apiVersion')]",
"type": "Microsoft.Network/publicIPAddresses",
"name": "[variables('publicIPAddressName')]",
"location": "[resourceGroup().location]",
"properties": {
"publicIPAllocationMethod": "[variables('publicIPAddressType')]",
"dnsSettings": {
"domainNameLabel": "[parameters('dnsLabelPrefix')]"
}
}
},
但是我在运行模板时遇到了麻烦。
如果有人知道如何做到这一点,将不胜感激?
谢谢