当使用模板在 Azure 上创建新的 Service Fabric 时,它会使用这个 json 片段 -
"name": "[concat('VMDiagnosticsVmExt', '_', variables('vmNodeType0Name'))]",
"properties": {
"type": "IaaSDiagnostics",
"autoUpgradeMinorVersion": true,
"protectedSettings": {
"storageAccountName": "[parameters('SupportStorageAccountName')]",
"storageAccountKey": "[parameters('SupportprotectedAccountKey1')]",
"storageAccountEndPoint": "https://core.windows.net/"
我想更新 storageAccountKey 作为我们安全程序的一部分,但我不知道如何更改它们。
我尝试通过模板应用更改,但出现错误
"code": "OperationNotAllowed",
"message": "VM Scale Set extensions of handler
'Microsoft.Azure.ServiceFabric.ServiceFabricNode'
can be deleted only at the time of VM Scale Set deletion."
而且我在 PowerShell 中找不到任何可以连接并让我改变它的东西
这可能吗?