Will
Will

Reputation: 557

What is Azure's Equivalent of Google Cloud's Service Accounts

I'm coming from Google Cloud Platform, and have been used to creating service agents, essentially user accounts to grant permissions/access that I specify to non human actors, so they can view/modify resources/attributes. I have been exploring Azure all evening and can't quite find something similar to that. Can anyone suggest Azure services or keywords I should do some reading on so I figure out how to implement similar identity and access in Azure?

Upvotes: 2

Views: 3222

Answers (2)

Langley
Langley

Reputation: 497

This medium article can give you a good comparison circa 2020.

Upvotes: 0

Alex Marshall
Alex Marshall

Reputation: 10322

You'll want to start off by looking at Azure Active Directory Service Principals and Application Registrations. These are the rough equivalent to Service Accounts. You'll also want to research Managed Service Identities, which are a way to simplify the use of Applications and Service Principals. You can start with this page and keep linking from there.

Upvotes: 5

Related Questions