I'm trying to see who requested a Deployment in one of my Azure subscription. I have been unable to find that information via the Azure Portal, Powershell or the Azure Resource explorer.
In Resource Explorer, I've been looking at https://resources.azure.com/subscriptions/<subscriptionId>/resourceGroups/<resourceGroupName>/providers/Microsoft.Resources/deployments/<deploymentName>
Via Powershell, I have been using these cmdlets:
Get-AzureRmResourceGroupDeployment -ResourceGroupName <resourceGroupName> and
Get-AzureRmResourceGroupDeploymentOperation –DeploymentName <deploymentName> –ResourceGroupName <resourceGroupName>
which give a good amount of information about the deployment and all the associated operations done as part of it, but I fail to see any information regarding who requested it (username, or maybe certificate used...).
Do you know where the requesting user of a Azure RM deployment can be obtained?