0

每当打开系统托管标识 VMSS(虚拟机规模集)时,如何执行 ARM 模板。

4

1 回答 1

0

您可以使用以下模板满足您的要求:

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "location": {
            "type": "String"
        },
        "virtualMachineScaleSetName": {
            "type": "String"
        }
    },
    "variables": {
        "virtualMachineScaleSetApiVersion": "2021-04-01"
    },
    "resources": [
        {
            "type": "Microsoft.Compute/virtualMachineScaleSets",
            "apiVersion": "[variables('virtualMachineScaleSetApiVersion')]",
            "name": "[parameters('virtualMachineScaleSetName')]",
            "location": "[parameters('location')]",
            "identity": {
                "type" : "SystemAssigned"
            }
        }
    ]
}

现有的 VMSS:

在此处输入图像描述

运行模板:

在此处输入图像描述

输出:

在此处输入图像描述

于 2022-02-18T07:39:54.663 回答