- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以仅允许在 Azure 的选定区域/位置部署 ARM 模板。如果是这样,我们如何在 createUIdefinition.json ARM 模板中实现它?
最佳答案
For location, specify the properties for the location control you wishto override. Any properties not overridden are set to their defaultvalues. resourceTypes accepts an array of strings containing fullyqualified resource type names. The location options are restricted toonly regions that support the resource types. allowedValues accepts anarray of region strings. Only those regions appear in thedropdown. You can set both allowedValues and resourceTypes. The resultis the intersection of both lists. Lastly, the visible property can beused to conditionally or completely disable the location dropdown.
我测试了这个并且它有效:
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"config": {
"isWizard": true,
"basics": {
"location": {
"resourceTypes": [
"microsoft.insights/components",
"microsoft.insights/components/CurrentBillingFeatures",
"Microsoft.Sql/servers",
"Microsoft.Web/sites",
"Microsoft.Web/serverfarms"
]
}
}
},
“microsoft.insights/components”目前在美国中西部不可用,已从位置选项中删除。
关于azure - 我们可以在 ARM createUIdefinition.json 中限制部署的 Azure 区域/位置吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53011783/
根据 GitHub ( https://github.com/Azure/azure-quickstart-templates/tree/master/marketplace-samples/simp
根据 GitHub ( https://github.com/Azure/azure-quickstart-templates/tree/master/marketplace-samples/simp
我正在 Azure 市场中发布我的解决方案模板。 例如,我的 mainTemplate.json 文件无需发布即可轻松测试,因为我可以从 Git 进行部署。但我似乎无法通过 Git 部署来测试 UI
我使用 .NET Core 2.0 开发了 Web 应用程序。现在我想在 Azure Marketplace 中部署此应用程序,以便任何人都可以使用此应用程序。为了部署应用程序,我创建了包,其中包含以
我使用 .NET Core 2.0 开发了 Web 应用程序。现在我想在 Azure Marketplace 中部署此应用程序,以便任何人都可以使用此应用程序。为了部署应用程序,我创建了包,其中包含以
我已经为 azure Web 应用程序创建了 ARM 模板。我需要将 ARM 模板发布到 azure 市场。我使用了azure发布门户https://publish.windowsazure.com/
是否可以仅允许在 Azure 的选定区域/位置部署 ARM 模板。如果是这样,我们如何在 createUIdefinition.json ARM 模板中实现它? 最佳答案 我从以下位置找到了答案:ht
我是一名优秀的程序员,十分优秀!