AskMe
AskMe

Reputation: 2561

How to add groups(security group) to a storage account in Azure?

Is there any ways to add the security group to a given storage account? Nothing found from MS documents from net.

Please let me know. Thanks.

Upvotes: 0

Views: 1055

Answers (3)

Tomer Aharon
Tomer Aharon

Reputation: 115

In general, you can manage each Azure resource with the IAM and then assign the relevant RBAC. In addition, note that the roles are inherited which means that if You'll assign it to a whole resource group, all of the resources in it will have the same role. This example relevant if you have a lot of storage accounts and you don't want to add permissions on by one.

Upvotes: 0

RamaraoAdapa
RamaraoAdapa

Reputation: 3119

You can assign security group a role in your Storage Account.

Login to Azure Portal --> Go to your Storage Account --> Click on Access Control (IAM) --> Click on Add Role Assignment

Now select the role you want to assign to the security group

Go to Members tab --> Click on Select Members and add your security group --> Click on Review and Assign

Upvotes: 1

Adam Marczak
Adam Marczak

Reputation: 2351

Storage Account > IAM > Add > select role > select member > Create

https://learn.microsoft.com/en-us/azure/role-based-access-control/role-assignments-portal

Upvotes: 0

Related Questions