External Secrets Operator integrates with Devolutions Server (DVLS) for secret management.
DVLS is a self-hosted privileged access management solution that provides secure password management, role-based access control, and credential injection for teams and enterprises.
DVLS authentication uses Application ID and Application Secret credentials.
Create a Kubernetes secret containing your DVLS credentials:
kubectl create secret generic dvls-credentials \
--from-literal=app-id="your-application-id" \
--from-literal=app-secret="your-application-secret"
{% include 'dvls-secret-store.yaml' %}
| Field | Description |
|---|---|
serverUrl |
The URL of your DVLS instance (e.g., https://dvls.example.com) |
vault |
(Optional) The name or UUID of the vault to fetch secrets from. When omitted, the vault must be specified in the secret key using the legacy <vault-id>/<entry-id> format. |
insecure |
(Optional) Set to true to allow plain HTTP connections. Not recommended for production. |
auth.secretRef.appId |
Reference to the secret containing the Application ID |
auth.secretRef.appSecret |
Reference to the secret containing the Application Secret |
NOTE: For ClusterSecretStore, ensure you specify the namespace in the secret references.
Entries can be referenced by UUID or name:
| Format | Example |
|---|---|
| Entry UUID | 7c9e6679-7425-40de-944b-e07fc1f90ae7 |
| Entry name | db-credentials |
| Entry name with folder path | infrastructure/databases/db-credentials |
| Folder path with backslashes | infrastructure\databases\db-credentials |
The vault is configured in the SecretStore's vault field (name or UUID), so the key only needs to identify the entry.
If an entry is inside a folder, you can include the folder path before the entry name. Both forward slashes (/) and backslashes (\) are accepted as path separators:
folder/subfolder/entry-name
folder\subfolder\entry-name
Note: When using backslashes in YAML, you must escape them with a double backslash (\\):
key: "folder\\subfolder\\entry-name"
Forward slashes do not need escaping and are recommended for simplicity.
Important: Entry names containing forward slashes (/) or backslashes (\) are not supported with name-based lookups, as those characters are interpreted as path separators. Use the entry UUID instead.
The folder path is optional. Without a path, the provider searches across all folders in the vault. If multiple entries share the same name in different folders, you can either specify the folder path or use the entry UUID to disambiguate.
Name-based lookups resolve the name to a UUID at runtime via an API call. If multiple credential entries match, an error is returned. For write-heavy scenarios (frequent PushSecret operations), prefer UUID references to avoid the extra lookup per operation.
You can find UUIDs in the DVLS web interface by viewing the entry properties.
DVLS supports multiple credential types. The provider maps each type to specific properties:
| Credential Type | DVLS Entry Type | Available Properties |
|---|---|---|
| Default | Credential | username, password, domain |
| Access Code | Secret | password |
| API Key | Credential | api-id, api-key, tenant-id |
| Azure Service Principal | Credential | client-id, client-secret, tenant-id |
| Connection String | Credential | connection-string |
| Private Key | Credential | username, password, private-key, public-key, passphrase |
All entries also include entry-id and entry-name metadata properties.
Note: When no property is specified, the password field is returned by default.
Note: In the DVLS web interface, "Secret" entries appear as a distinct entry type and are mapped to the Access Code credential subtype internally.
To fetch specific properties from a credential entry:
{% include 'dvls-external-secret.yaml' %}
When using dataFrom.extract, all available properties from the credential entry will be synced to the Kubernetes secret.
The DVLS provider supports pushing secrets back to DVLS:
{% include 'dvls-push-secret.yaml' %}
Note: Push secret updates an existing entry's password field. The entry must already exist in DVLS.
find operation for discovering secrets is not currently supportedSSL_CERT_FILE environment variable as a workaroundDocument/Certificate) are not currently supported. Only Credential entries are supportedIf you receive authentication errors:
If an entry cannot be found:
If you receive a "multiple entries found" error when using name-based references, it means more than one credential entry shares the same name in the vault. Use the entry UUID instead of the name to target the correct entry.