Reputation: 74
I want to have a system assigned managed identity for azure analysis services thorough bicep template. is this supported?
when configuring bicep template tried to parse
identity: {
type: 'SystemAssigned'
}
however getting the following warning
The property "identity" does not exist in the resource or type definition, although it might still be valid. If this is an inaccuracy in the documentation, please report it to the Bicep Team
the full bicep template can be seen below
resource ssas 'Microsoft.AnalysisServices/servers@2017-08-01' = {
name: 'as'
location: loc
sku: {
name: 'name'
tier: 'Basic'
capacity: 1
}
properties: {
ipV4FirewallSettings: {
enablePowerBIService: true
firewallRules: [
{
firewallRuleName: 'firewall'
rangeEnd: 'my rangeEnd'
rangeStart: 'my rangeStart'
}
{
firewallRuleName: 'firewall'
rangeEnd: 'rangeEnd'
rangeStart: 'rangeStart'
}
]
}
}
identity: {
type: 'SystemAssigned'
}
}
Upvotes: 1
Views: 148
Reputation: 29522
Looking at the documentation, it looks like it is not supported yet:
Analysis Services does not support operations performed by managed identities using service principals. To learn more, see Managed identities for Azure resources and Azure services that support Microsoft Entra authentication.
Upvotes: 1