Secret Referencing
Infisical’s secret referencing functionality makes it possible to reference the value of a “base” secret when defining the value of another secret. This means that updating the value of a base secret propagates directly to other secrets whose values depend on the base secret.
Since secret referencing reconstructs values on the client side, any client (user, service token, or machine identity) fetching secrets must have proper permissions to access all base and dependent secrets. Without sufficient permissions, secret references will not resolve to their appropriate values.
For example, if secret A references values from secrets B and C located in different scopes, the client must have read access to all three scopes containing secrets A, B, and C. If permission to any referenced secret is missing, the reference will remain unresolved, potentially causing application errors or unexpected behavior.
This is an important security consideration when planning your secret access strategy, especially when working with cross-environment or cross-folder references.
Syntax
When defining a secret reference, interpolation syntax is used to define references to secrets in other environments and folders. Suppose you have some secretMY_SECRET at the root of some environment and want to reference part of its value from another base secret BASE_SECRET located elsewhere.
Then consider the following scenarios:
- If
BASE_SECRETis in the same environment and folder asMY_SECRET, then you’d reference it using${BASE_SECRET}. - If
BASE_SECRETis at the root of another environment with the slugdev, then you’d reference it using${dev.MY_SECRET}.
Secret Imports
Infisical’s Secret Imports functionality makes it possible to import the secrets from another environment or folder into the current folder context. This can be useful if you have common secrets that need to be available across multiple environments/folders. To add a secret import, press the downward chevron to the right of the Add Secret button; then press on the Add Import button.
Once added, a secret import will show up with a green import icon on the secrets dashboard.
In the example below, you can see that the items in the path /some-folder are being imported into
the current folder context.
To delete a secret import, hover over it and press the X button that appears on the right side.
Lastly, note that the order of secret imports matters. If two secret imports contain secrets with the same name, then the secret value from the bottom-most secret import is taken: “the last one wins.”
To reorder a secret import, hover over it and drag the arrows handle to the position you want.
Relative Reference Resolution in Imported Secrets
Only available on the V4 Secrets API (
/api/v4/secrets). v3 and below always resolve local references against the source environment.${KEY} that point to other secrets. Relative resolution changes how those local references are looked up:
Resolution order for
${KEY} inside an imported secret (e.g. staging imports from dev):
- Look in
staging(current environment) - If not found, look in
dev(source environment) - If still not found, expand to an empty string
Example
DB_URL via v4 → postgres://stg-db.internal/myapp
The ${DB_HOST} local reference resolves to staging’s value. Without relative resolution (v3), it would resolve to dev’s DB_HOST instead.
Behavior notes
- The current-env-first rule applies at every depth of recursive expansion, not just the top level. If an imported secret references another secret that references another, each
${KEY}at every level checks the current environment first. - Import-chain lookup: when looking for a key in an environment, Infisical also searches that environment’s one-level-deep imports. If prod imports from
/sharedand/sharedhasKEY, a${KEY}reference in a prod context will find it. - Permissions: read access is enforced at every step. If the calling identity lacks access to any secret in the chain, the request returns
403.
Cross-Project Secret Sharing
Cross-project secret sharing is currently in private preview and available by invitation only.
Enabling Cross-Project Secret Sharing
Cross-project sharing is controlled by an organization-level toggle. An organization admin must enable it before any cross-project references or imports can be created:- Navigate to the Secrets Management product page.
- Navigate to Product Settings page.
- Enable the Allow cross-project secret sharing option.
Project Grants
A Project Grant is the authorization mechanism that controls which projects can access secrets from a given source project. Grants are created from the source project (the project that owns the secrets) and specify:- Source environment and folder path: the specific location in the source project being shared.
- Target project: the project that is allowed to reference or import secrets from that location.
- Navigate to Project Settings in the source project.
- Go to the Policies tab.
- Under Cross-Project Secret Sharing, click Add Grant.
- Fill in the environment and folder path you want to share, and choose the target project that should have access.
Cross-Project References
You can reference secrets from a different project using the@project-slug prefix. This allows you to compose secret values across projects without duplicating them.
Cross-Project Imports
You can also import secrets from a different project entirely. Cross-project imports work the same way as regular imports, but the source environment and folder belong to another project within the same organization. To create a cross-project import:- Click the downward chevron next to Add Secret and select Add Import.
- Select Other Project as the import source.
- Choose the source project, environment, and folder path, then click Create Import.
- The cross-project import is now created and will appear on the secrets dashboard.