Class PropertiesSecretSource
java.lang.Object
io.jenkins.plugins.casc.SecretSource
io.jenkins.plugins.casc.impl.secrets.PropertiesSecretSource
- All Implemented Interfaces:
ExtensionPoint
@Extension
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class)
public class PropertiesSecretSource
extends SecretSource
This
SecretSource
implementation allows to use a .properties file for providing secrets.
The default file path is /run/secrets/secrets.properties
, which can be changed via
SECRETS_FILE
environment variable.- Since:
- 1.33
- Author:
- Daniel Estermann
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Field Summary
-
Constructor Summary
-
Method Summary
Methods inherited from class io.jenkins.plugins.casc.SecretSource
all
-
Field Details
-
SECRETS_DEFAULT_PATH
Default path for .properties file- See Also:
-
-
Constructor Details
-
PropertiesSecretSource
public PropertiesSecretSource()
-
-
Method Details
-
reveal
Description copied from class:SecretSource
Reveal the plaintext value of a secret.- Specified by:
reveal
in classSecretSource
- Parameters:
secret
- the variable reference to reveal- Returns:
- the secret's value, or Optional.empty() if a recoverable error occurred. (An empty Optional will allow CasC to continue processing the resolver chain.)
Recoverable errors include:
- the secret was not found in the backing store
-
init
public void init()- Overrides:
init
in classSecretSource
-