在 Bicep 部署中的应用服务上设置“自定义域验证 ID”属性 无效

Setting the `customDomainVerificationId` property on an AppService in a Bicep deployment has no effect

我正在通过 Bicep 创建应用服务,并尝试设置“自定义域验证 ID”属性,以便我可以设置正确的 TXT 记录以进行验证(在 Bicep 部署之前 运行).

resource app_service 'Microsoft.Web/sites@2021-01-15' = {
  name: name
  location: location
  properties: {
    serverFarmId: plan_id
    siteConfig: {
      netFrameworkVersion: 'v4.6'
    }
    customDomainVerificationId: custom_domain_verification_id
  }
}

但是,我设置的值未被遵守,将在应用服务的“自定义域”下出现其他值。

这个属性是只读的吗?

更新

看起来这实际上可能是只读的 属性。 , so makes sense that it can't be set on an individual AppService. Reported an issue here.

是的,这个 属性 应该是只读的。创建应用服务时填写。

如果您不介意,请在 https://aka.ms/bicep-type-issues

上报告此错误