An Azure service that is used to manage and protect cryptographic keys and other secrets used by cloud apps and services.
Hello @Kensei Kawamura
Having Key Vault Administrator on an RBAC-enabled vault should provide data-plane permissions for keys, secrets, and certificates, so if all human users are suddenly denied, I would first determine whether this is actually an RBAC failure or a network/security-policy restriction.
Please capture the exact 403 error from the portal or CLI. The error details are important, for example, ForbiddenByRbac points toward authorization, while messages mentioning public access, firewall, or private link indicate network enforcement.
Also check Key Vault → Networking. If Public Network Access has been disabled or the vault is restricted to a private endpoint, human users accessing through the Azure portal still need network connectivity to the Key Vault data-plane endpoint (<vault>.vault.azure.net). Having Key Vault Administrator doesn't bypass those network restrictions.
You can also verify the effective role assignment:
az role assignment list \
--assignee <user-object-id> \
--scope <key-vault-resource-id> \
--include-inherited \
-o table
If Key Vault Administrator is active and the network path is allowed but the request still returns 403, check whether there are conditional/ABAC role assignments or tenant-level controls affecting the request.
Since you mentioned this is the PME tenant and the behavior changed from what worked previously, if the same failure affects multiple human identities while workload/service identities continue working, this may require an internal Microsoft tenant/security-policy review rather than a Key Vault configuration change.
If you can share the sanitized 403 error including its innererror.code (without tenant, subscription, vault, or user identifiers), that should tell us which layer is denying the request.
Please "Accept the Answer" if this information helped you. This will help us and others in the community as well.