我在ARM模板中拥有它。
"outputs": {
"storageName": {
"type": "string",
"value": "[parameters('storageName')]"
}
}
}
我想在使用此名称后立即在该名称的存储帐户上启用一个静态站点,...
az storage blob service-properties update --account-name $(storageName) --static-website --404-document "404.html" --index-document "index.html"
但是我怀疑我没有从部署任务中正确输出它,因为上面的CLI命令不起作用。