Grant Owner Access to All Subscriptions in Azure

To grant Owner access to all subscriptions within a directory in Azure, you can assign the Owner role at the directory (tenant) or subscription level, depending on your needs. Here are the steps to grant Owner access:

Option Steps
Option 1: Assign Owner at the Tenant (Directory) Level
  1. Sign in to the Azure portal with your account.
  2. In the Azure portal, go to Azure Active Directory by searching for it in the search bar.
  3. In the left-hand menu, select Roles and administrators.
  4. Find and click on the Owner role.
  5. Click + Add assignment.
  6. In the Members section, select the user, group, or service principal to which you want to assign the Owner role.
  7. After selecting the members, click Assign.
Note: Assigning this at the directory level is typically not recommended as this grants broad access to all subscriptions in the tenant.
Option 2: Assign Owner at the Subscription Level
  1. Sign in to the Azure portal.
  2. Go to Subscriptions by searching for it in the search bar.
  3. Select the subscription for which you want to assign the Owner role.
  4. In the left-hand menu, under Access control (IAM), click on Role assignments.
  5. Click + Add > Add role assignment.
  6. In the Role dropdown, select Owner.
  7. In the Select field, choose the user, group, or service principal that you want to assign the role to.
  8. Click Save.
Option 3: Use Azure CLI
  1. Open Azure Cloud Shell or your terminal with the Azure CLI installed.
  2. Log in to Azure:
  3. az login
  4. Assign the Owner role at the subscription level:
  5. az role assignment create --assignee <user-email-or-object-id> --role Owner --subscription <subscription-id>

Notes: