Azure Resource Graph query to get subscription properties
I am very new to ARG queries. I am struggling to figure out how to get a list of our Azure Subscriptions using ARG, including some of the properties you see on the properties pane when using the azure portal. In particular, I want the property visually labelled “ACCOUNT ADMIN”.
Can anyone point me in the right direction?
I am very new to ARG queries. I am struggling to figure out how to get a list of our Azure Subscriptions using ARG, including some of the properties you see on the properties pane when using the azure portal. In particular, I want the property visually labelled “ACCOUNT ADMIN”.Can anyone point me in the right direction?
resourcecontainers
| where type == ‘microsoft.resources/subscriptions’
| project subscriptionId, name, owner = ??? Read More