@Praveen Kumar Gudipudi
Problem solved
Fix was to add UAMI to System Topic
param`` systemTopicName string
param`` location string
param`` tags object = {}
param`` storageAccountId string
param`` userAssignedIdentityId string
resource`` systemTopic 'Microsoft.EventGrid/systemTopics@2025-02-15' = {
name``: systemTopicName
location``: location
identity``: {
type``: 'UserAssigned'
userAssignedIdentities``: {
'``${userAssignedIdentityId}': {}
}
}
properties``: {
source``: storageAccountId
topicType``: 'microsoft.storage.storageaccounts'
}
tags``: tags
}
output`` systemTopicName string = systemTopic.name
output`` systemTopicId string = systemTopic.id
You can close the ticket. Thank you for your help.
Kind regards
Adrian