> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ctrlrun.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# StaticIdentityProvider

> A fixed principal, for development, tests and single-tenant demonstrations (§3.3).

`ctrlrun.StaticIdentityProvider` — class, defined at `src/ctrlrun/identity.py:87`

```python theme={null}
class StaticIdentityProvider()
    def __init__(agent: str, user: str | None, claims: Mapping[str, ClaimValue], issuer: str | None, expires_at: datetime | None)
```

A fixed principal, for development, tests and single-tenant demonstrations (§3.3).

It asserts an identity nobody verified, so it warns once — at construction, not per call.
A library that warns on every action is a library whose warnings get filtered, and the
operator who needs to see this needs to see it once, at the point they chose it.

## Next

* [Python API index](/reference/api/index).
* [Get started](/get-started/quickstart) · [Why](/why).


## Related topics

- [Roadmap](/ROADMAP.md)
- [Python API](/reference/api/index.md)
- [IdentityProvider](/reference/api/IdentityProvider.md)
- [JWTIdentityProvider](/reference/api/jwt_identity-JWTIdentityProvider.md)
- [ApprovalProvider](/reference/api/ApprovalProvider.md)
