alonisser
alonisser

Reputation: 12068

Instance roles for Azure vms

Basically I'm trying to implement with Azure the following AWS pattern:

How it this possible with Azure?

Upvotes: 2

Views: 5011

Answers (3)

Jason Ye
Jason Ye

Reputation: 13954

Allow this role to access a certain container (AWS bucket equivalent) as read only and download from there.

For now, Azure does not support AD-based authentication or ACLs.

As a workaround, we can use shared access signatures (SAS).

A shared access signature (SAS) provides you with a way to grant limited access to objects in your storage account to other clients, without exposing your account key.

More information about Azure SAS, please refer to this link.

Upvotes: 0

Jinesh Shah
Jinesh Shah

Reputation: 952

The equivalent to IAM in AWS to Azure is Role-Based Access Control .

You can use Role-Based Access Control to manage access to your Azure subscription resources.

Also if you wish you can create custom roles you can refer this, Creating custom roles for Azure Role-Based Access Control.

You can refer this for custom user roles, Assign custom roles for internal and external users

Upvotes: 1

Related Questions