You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
The Secret Provider is a generic interface to fetch and renew secrets from Vault. Classes conforming to the Secret Provider interface have the following methods:
initialize(callback)
Called to get a secret from Vault.
The callback argument is a callback function invoked with two arguments: (error, result). If the call to Vault to get the secret fails, the error argument will be populated. If the call to Vault to get the secret succeeds, the result argument will be populated.
renew(callback)
Called to renew the lease on a secret from Vault.
The callback argument is a callback function invoked with two arguments: (error, result). If the call to Vault to renew the lease on the secret fails, the error argument will be populated. If the call to Vault to renew the lease on the secret succeeds, the result argument will be populated.
Issues related to this project are filed under the "secret-provider" milestone.
The text was updated successfully, but these errors were encountered:
The Secret Provider is a generic interface to fetch and renew secrets from Vault. Classes conforming to the Secret Provider interface have the following methods:
initialize(callback)
Called to get a secret from Vault.
The
callback
argument is a callback function invoked with two arguments:(error, result)
. If the call to Vault to get the secret fails, theerror
argument will be populated. If the call to Vault to get the secret succeeds, theresult
argument will be populated.renew(callback)
Called to renew the lease on a secret from Vault.
The
callback
argument is a callback function invoked with two arguments:(error, result)
. If the call to Vault to renew the lease on the secret fails, theerror
argument will be populated. If the call to Vault to renew the lease on the secret succeeds, theresult
argument will be populated.Issues related to this project are filed under the "secret-provider" milestone.
The text was updated successfully, but these errors were encountered: