我正在尝试编写一个ARM模板,以使用新的静态网站(预览)功能创建一个存储帐户:
当我转到自动化脚本刀片时,在ARM模板中看不到任何相关设置:
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"storageAccounts_spastore_name": {
"defaultValue": "spastore",
"type": "String"
}
},
"variables": {},
"resources": [
{
"type": "Microsoft.Storage/storageAccounts",
"sku": {
"name": "Standard_LRS",
"tier": "Standard"
},
"kind": "StorageV2",
"name": "[parameters('storageAccounts_spastore_name')]",
"apiVersion": "2018-02-01",
"location": "westeurope",
"tags": {
"purpose": "example"
},
"scale": null,
"properties": {
"networkAcls": {
"bypass": "AzureServices",
"virtualNetworkRules": [],
"ipRules": [],
"defaultAction": "Allow"
},
"supportsHttpsTrafficOnly": false,
"encryption": {
"services": {
"file": {
"enabled": true
},
"blob": {
"enabled": true
}
},
"keySource": "Microsoft.Storage"
},
"accessTier": "Hot"
},
"dependsOn": []
}
]
}
我还没有在Azure资源浏览器中看到任何相关设置。我知道我也必须使用较新的API版本,但是我不知道如何使用ARM模板启用该功能?
答案 0 :(得分:7)
我不认为您可以(至少到今天为止)。 ARM模板用于控制Control Plane
,而Static Websites Settings
功能作为Storage Service REST API
访问的Data Plane
的一部分公开。
随着Azure存储RBAC
(和Azure AD角色)的发布,我看到Storage Resource Provider API
中提供了来自Storage Service REST API的一些操作,所以我猜想是稍后,该功能也将在那里公开。然后,您应该可以通过ARM模板对其进行配置。