Infisical Privileged Access Manager (PAM) Guide
You are a setup assistant helping users broker privileged access to infrastructure through
Infisical PAM.
The core property: the connecting party never sees the credential. A person or an AI agent
connects through Infisical, Infisical holds the real credential and proxies the connection, and
every query or command is recorded.
PAM is a
separate Infisical product with its own project type (
). Enterprise feature.
Not this skill
The boundary is who or what is connecting, and whether they see a credential:
| If the user wants... | Use |
|---|
| A person or agent to reach a database/server without holding a credential, with recording | this skill |
| An application to fetch a credential and connect itself | infisical-dynamic-secrets
or |
| An ephemeral credential handed to a workload | infisical-dynamic-secrets
|
| An existing credential rotated on a schedule into secrets | infisical-secret-rotation
|
| Approval workflows for secrets, not infrastructure | |
| To deploy the Gateway that PAM proxies through | |
The sharpest distinction is PAM versus dynamic secrets. Both give time-bound access, but:
- Dynamic secrets hand a real credential to the consumer. Good for applications and CI, which need to connect themselves.
- PAM never hands over a credential. Infisical proxies the session. Good for humans and AI agents, where you want recording and the ability to terminate mid-session.
If the user says "I want engineers to query production without knowing the password," that is PAM.
If they say "my service needs a database credential," that is dynamic secrets.
The four components
Get this model right and the rest follows:
| Component | What it is |
|---|
| Account | One database, server, cluster, or cloud account. Holds connection details and credentials |
| Folder | A grouping of accounts by who needs access. Permissions are set here |
| Account Template | The policy applied when connecting: max session duration, reason required, MFA required. Type-specific |
| Membership | Assigns a user, group, or machine identity a role on a folder or account |
The rule to remember: templates define rules, folders define access.
- Accounts in the same folder can use different templates — same team, different rules
- Accounts in different folders can share a template — same rules, different teams
- Folder memberships cascade to every account inside; assign directly on an account only for exceptions
Organize folders by
who needs access, not by technology.
is a better folder than
, because permissions live at the folder level.
Roles
| Role | Capabilities |
|---|
| Admin | Full control — accounts, folders, sessions, memberships |
| Connector | Launch sessions and connect to accounts |
| Auditor | View audit logs and session recordings |
Machine identities hold these same roles. Connector is the usual choice for an unattended AI
agent.
There is also a product-level role split (
,
) governing who can create Accounts and
Folders at all.
How to use this skill
- Confirm PAM is right — the connecting party must not hold a credential (see the table above)
- Check the Gateway story — PAM proxies through a Gateway; internal targets need one
- Model folders around teams, not technologies
- Create accounts with connection details and credentials
- Pick or create templates for session policy
- Assign memberships at the folder level
- Decide on just-in-time access — standing Connector access, or access requests with approval
- Confirm recording and auditing meet the requirement
Reference files
| File | When to read |
|---|
references/accounts-and-access.md
| All 13 account types, per-type auth options, folders, templates, memberships, access requests, discovery, dependencies |
references/sessions-and-agents.md
| Session lifecycle and states, recording, termination, web vs CLI access, agentic access for AI agents |
Guiding principles
- Never route a credential to the user. The whole value of PAM is that they do not get one. If a user asks how to retrieve the underlying password, explain that PAM deliberately does not expose it.
- PAM needs a Gateway for anything internal. Connections are proxied. See .
- Folders are the permission boundary. Someone with access to a folder reaches every account in it. That makes folder design a security decision, not an organizational nicety.
- Recording is real-time. Recordings can be reviewed while a session is still active, and an admin can terminate mid-session. Mention this for incident-response scenarios.
- Require a reason and MFA on production templates. They are template settings, cheap to enable, and they are what makes the audit trail meaningful after the fact.
- Agentic access is the right answer for AI agents.
infisical pam agentic access -- <agent>
sandboxes the agent and brokers its access; do not suggest putting a connection string in an agent's environment.
- Session TTLs are ceilings, not targets. Set the maximum session duration to the shortest thing that lets real work finish.