Terminology Index
Glossary
2953 terms
A32
Authorization Models
The different schemes for deciding what an authenticated user may do, such as role-based access control (RBAC), attribute-based access control (ABAC), and relationship-based models. Each balances simplicity, flexibility, and manageability differently.
The model chosen shapes how access is granted and reviewed: RBAC groups permissions into roles for simplicity, while ABAC uses attributes for fine-grained, context-aware decisions at the cost of complexity. Picking the right model is a core IAM design decision driven by the organization's needs.
Introduced in: Identity and Access Management
Examples
- RBAC granting access by assigning users to roles like 'Finance'.
- ABAC allowing access only when a user's department and location attributes match.
- Choosing RBAC for simplicity and layering ABAC for sensitive resources.
