CyberArk Vault

Retrieve secrets from CyberArk Conjur Vault.

What’s inside

Please refer to the above links for usage and configuration details.

Maven coordinates

<dependency>
    <groupId>org.apache.camel.springboot</groupId>
    <artifactId>camel-cyberark-vault-starter</artifactId>
</dependency>

Spring Boot Auto-Configuration

The starter supports 15 options, which are listed below.

Name Description Default Type

camel.component.cyberark-vault.account

The CyberArk Conjur account name

String

camel.component.cyberark-vault.api-key

The API key for authentication with CyberArk Conjur

String

camel.component.cyberark-vault.auth-token

Pre-authenticated token to use for CyberArk Conjur

String

camel.component.cyberark-vault.autowired-enabled

Whether autowiring is enabled. This is used for automatic autowiring options (the option must be marked as autowired) by looking up in the registry to find if there is a single instance of matching type, which then gets configured on the component. This can be used for automatic configuring JDBC data sources, JMS connection factories, AWS Clients, etc.

true

Boolean

camel.component.cyberark-vault.certificate-path

Path to the SSL certificate for verification

String

camel.component.cyberark-vault.configuration

Component configuration. The option is a org.apache.camel.component.cyberark.vault.CyberArkVaultConfiguration type.

CyberArkVaultConfiguration

camel.component.cyberark-vault.conjur-client

Reference to a ConjurClient instance in the registry. The option is a org.apache.camel.component.cyberark.vault.client.ConjurClient type.

ConjurClient

camel.component.cyberark-vault.enabled

Whether to enable auto configuration of the cyberark-vault component. This is enabled by default.

Boolean

camel.component.cyberark-vault.lazy-start-producer

Whether the producer should be started lazy (on the first message). By starting lazy you can use this to allow CamelContext and routes to startup in situations where a producer may otherwise fail during starting and cause the route to fail being started. By deferring this startup to be lazy then the startup failure can be handled during routing messages via Camel’s routing error handlers. Beware that when the first message is processed then creating and starting the producer may take a little time and prolong the total processing time of the processing.

false

Boolean

camel.component.cyberark-vault.operation

The operation to perform. It can be getSecret or createSecret

getsecret

CyberArkVaultOperations

camel.component.cyberark-vault.password

The password for authentication with CyberArk Conjur

String

camel.component.cyberark-vault.secret-id

The secret ID to retrieve from CyberArk Conjur

String

camel.component.cyberark-vault.url

The CyberArk Conjur instance URL

String

camel.component.cyberark-vault.username

The username for authentication with CyberArk Conjur

String

camel.component.cyberark-vault.verify-ssl

Whether to verify SSL certificates when connecting to CyberArk Conjur

true

Boolean