从 Bicep 中的应用服务引用其他部署槽

Reference other deployment slot from app service in Bicep

我正在尝试从 Bicep 的暂存槽中检索 principalId。我的代码如下。

resource App 'Microsoft.Web/sites@2016-08-01' existing = { 
    name: WebAppName
    scope: resourceGroup(ResourceGroupName)
}
...
...
id: App.identity.principalId
stagingId: ?????

如何访问其他插槽?智能感知似乎对我没有帮助。

谢谢!

如果我没理解错你想要的。

resource AppStagingSlot 'Microsoft.Web/sites/slots@2016-08-01' existing = { 
   parent: App
   name: 'staging'
   scope: resourceGroup(ResourceGroupName)
}