Event Subscriptions is a paid feature that is available under the Enterprise license.
Please contact sales@infisical.com.
How It Works
Event Subscriptions use Server-Sent Events (SSE) to deliver real-time updates to your applications:- Your application opens an SSE connection to the Infisical Events API.
- When a subscribed event occurs (e.g., a secret is updated), Infisical pushes a notification through the connection.
- Your application receives the event instantly and can take appropriate action.
Event Subscriptions are designed for real-time communication and do not include persistence or replay
capabilities—events are delivered once and are not stored for future retrieval. Ensure your application
maintains an active connection to receive events.
Supported Events
You can subscribe to the following event types:Secrets
| Event | Description |
|---|---|
secret:create | Triggered when a new secret is created |
secret:update | Triggered when an existing secret is modified |
secret:delete | Triggered when a secret is removed |
secret:import-mutation | Triggered when a secret changes via an import |
Permissions Setup
To receive events, the machine identity must have the Secret Events permission with the appropriate actions enabled.1
Open Project Roles

Go to Access Management and select Project Roles.2
Create or edit a role
Create a new role for event subscriptions, or edit an existing one.3
Add a policy to the role
Select the resources the role should have access to.
4
Enable event actions
Enable the actions corresponding to the events you want to receive (e.g., read, create, update, delete).Filtering Events with Conditions
You can scope events to specific secret paths, environments, or other conditions.
This allows you to receive only the events relevant to your use case, reducing noise and improving efficiency.
Getting Started
Event Subscriptions are currently available via the Events API. Support for SDKs, Kubernetes Operator, and other integrations is coming soon.Prerequisites
You need an authentication token from a machine identity. Follow the machine identities documentation to set up authentication.Subscribing to Events
To subscribe to events, make a request to the events endpoint with your project ID and optional filters.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
projectId | string | The ID of the project to subscribe to |
register | array | List of event filters |
register[].conditions | object | Optional conditions to filter events |
register[].conditions.environmentSlug | string | Filter by environment (e.g., dev, staging, prod) |
register[].conditions.secretPath | string | Filter by secret path (e.g., /api/keys) |
Content-Type: text/event-stream to initiate an SSE connection. In the cURL example below, we use the -N flag to keep the connection open to receive incoming events from Infisical.
Response Format
Secret Changes
Secret Changes
- Event triggered on a secret change
Secret Import Mutation
Secret Import Mutation
- Event triggered on a secret change in an import