Share via

how to migrate new and existing vaults to Azure RBAC

Vince Dies 0 Reputation points
2026-02-11T16:17:05.0466667+00:00

how to migrate new and existing vaults to Azure RBAC

Azure Key Vault
Azure Key Vault

An Azure service that is used to manage and protect cryptographic keys and other secrets used by cloud apps and services.

{count} votes

1 answer

Sort by: Most helpful
  1. Dillon Silzer 60,816 Reputation points Volunteer Moderator
    2026-02-11T22:33:18.8966667+00:00

    Hi Vince,

    There is no "hit migration" button, but you should be looking at your roles that you have assigned currently. You can use Azure CLI to find out the listing:

    az keyvault show \
      --name <vault-name> \
      --resource-group <resource-group> \
      --query properties.accessPolicies
    
    

    Then I would recommend applying the same levels of access to RBAC.

    https://learn.microsoft.com/en-us/azure/key-vault/general/rbac-migration?tabs=cli

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.