可以使用二头肌与应用程序服务计划一起使用ZonereDiment属性吗?

发布于 2025-01-23 06:12:54 字数 111 浏览 3 评论 0原文

我正在尝试使用二头肌使用应用程序服务计划定义来指定区域冗余的属性。我正在使用Visual Studio代码。 Intellisense表示不支持此属性。有人遇到这个问题吗?如果是这样,您是如何解决这个问题的?

I am trying to specify the property for zone redundancy with an app service plan definition using Bicep. I am using Visual Studio Code. Intellisense says this property is not supported. Has anyone encountered this issue, and if so, how did you get around it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剪不断理还乱 2025-01-30 06:12:54

来自,我可以看到它可用,因为版本2021-02-01。因此,使用最新版本之一应该有效:

resource appServicePlan 'Microsoft.Web/serverfarms@2021-03-01' = {
  ...
  properties: {
    ...
    zoneRedundant: true
  }
}

From the documentation, I can see it is available since version 2021-02-01. So using one of the latest versions should work:

resource appServicePlan 'Microsoft.Web/serverfarms@2021-03-01' = {
  ...
  properties: {
    ...
    zoneRedundant: true
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文