Identity Store
An identity store is a repository that holds information about the users and groups an organization manages, such as their attributes, credentials, and permissions. IAM systems rely on it as a central place to look up who someone is and what is known about them. Think of it as the authoritative record of identities that other identity and access management components read from.
An identity store is a repository that persists digital identities, typically users and groups, along with their attributes, authentication-related data, and, in some deployments, associated permissions or role assignments. It serves as the data layer that IAM components query to identify and retrieve principals; depending on the deployment, it may be implemented as an LDAP directory, a database, or a vendor-specific service (for example, the Identity Store used by AWS IAM Identity Center provides a single place to retrieve users and groups). Note that an identity store is primarily a source of identity data and should not be conflated with the authentication process itself (verifying a principal's identity) or with runtime authorization enforcement; while it may hold credential material and permission attributes, the way that data is consumed for authentication or authorization depends on the surrounding IAM architecture. Whether it functions as an authoritative source of record or a downstream copy varies by configuration.
Why it matters
The identity store is the data foundation that most IAM operations depend on. When an IAM system needs to identify a principal, retrieve attributes, or look up group memberships, it queries an identity store to do so. Because so many downstream functions, identification during an access flow, attribute lookups that feed authentication and authorization decisions, and provisioning targets, read from this repository, the accuracy and integrity of the data it holds directly shape how reliably the surrounding IAM architecture behaves.
The distinction between an authoritative source of record and a downstream copy matters in practice. In many deployments an identity store is a synchronized replica rather than the system of record, and treating a stale or secondary copy as authoritative can lead to access decisions based on outdated attributes or group memberships. Because the identity store may hold credential material and permission attributes, it is also a sensitive asset: how that data is protected and how consuming components use it depends on the surrounding design rather than on the store itself.
It is important not to overstate what an identity store does. It is primarily a source of identity data and should not be conflated with the authentication process (verifying a principal's identity) or with runtime authorization enforcement. Even when it contains credentials or role assignments, the way that data is consumed for authentication or authorization depends on the broader IAM architecture, so the identity store is one component among several rather than the mechanism that grants or denies access.
Who it's relevant to
Inside Identity Store
Common questions
Answers to the questions practitioners most commonly ask about Identity Store.
