Forum Discussion
mehtaparth09
Jan 18, 2021Copper Contributor
How to get alert on mail when any new Azure service gets created by someone?
Hi, I want to setup a mail at particular time in a day and it should collect all the Azure services which got created by someone in past 24 hours. How can we achieve this?
TomWechsler
Jan 19, 2021MVP
I would set up two notifications. One like the "Create Deployment" image and a notification when a new resource group is created. Should then actually cover everything (per subscription). I hope this helps you? Kind regards, Tom Wechsler
ersameed
Dec 06, 2021MCT
I try this, It is too noisy. I am looking for a summarised alert from log analytics.
AzureActivity
| where CategoryValue == "Administrative"
| where OperationNameValue contains "MICROSOFT.RESOURCES/DEPLOYMENTS/WRITE" and ActivityStatusValue contains "Success"
| project TimeGenerated, ResourceGroup, Caller, Properties
But unable to take out the vault from "Resource" vault from "Properties".
Regards,
Sameed Shaikh