0
votes

I am working on deploying resources in to Azure using ARM Templates. I am one of five in my team. After deploying any resource into Azure portal, we need to know which user has deployed specific resource deployment into Azure including time. Because the deployment process has done randomly into Azure by the users.

How to find the details of specific user after deployment?

1
define find the details of specific user4c74356b41

1 Answers

1
votes

No way can associate the Azure deployments to the users smoothly. Seems you want to check the deployment logs.

In VSTS you can create a notification subscription for the deployments, thus you will receive the notifications once a deployment is triggered and you can check the deploy logs...

Another workaround is checking the Activity Logs in Azure. Please see View activity logs to audit actions on resources for details. You can also try the REST API:Activity Logs - List

You can also view the operations for a deployment through the Azure portal. Please seeView deployment operations with Azure Resource Manager for details.