is there any way to get an azure subscription ID f...
# general
b
is there any way to get an azure subscription ID from one of the resources? they should know it right?
w
The
id
of (almost?) all Azure resources is in the form of an ARM id, which looks like
/subscriptions/<subscriptionid>/...
. So you should be able to extract from that.
👍 1