5

We have created a Azure Timer Function that monitors activities of various resources of one subscription. Now we want to update it so that it can have access to more than one subscription.

Is it possible to achieve the level of access for the managed identity of Azure Function?

Gour Gopal
  • 581
  • 7
  • 22

1 Answers1

8

Yes. Managed identities exist in the Azure AD tenant as service principals, and can thus be assigned access to any subscription connected to that Azure AD tenant.

If the subscriptions are connected to different Azure AD tenants, then no.

juunas
  • 54,244
  • 13
  • 113
  • 149