Chapter 43. Google Secret Manager


Only producer is supported

The Google Secret Manager component provides access to Google Cloud Secret Manager.

43.1. Dependencies

When using camel-aws-secrets-manager with Red Hat build of Camel Spring Boot, add the following Maven dependency to your pom.xml to have support for auto configuration:

<dependency>
  <groupId>org.apache.camel.springboot</groupId>
  <artifactId>camel-google-secret-manager-starter</artifactId>
</dependency>
Copy to Clipboard

43.2. Authentication Configuration

Google Secret Manager component authentication is targeted for the use with the GCP Service Accounts. For more information, please refer to Google Cloud Authentication.

When you have the service account key, you can provide authentication credentials to your application code. Google security credentials can be set through the component endpoint:

String endpoint = "google-secret-manager://myCamelFunction?serviceAccountKey=/home/user/Downloads/my-key.json";
Copy to Clipboard

Or by setting the environment variable GOOGLE_APPLICATION_CREDENTIALS:

export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/my-key.json"
Copy to Clipboard

43.3. URI Format

google-secret-manager://functionName[?options]
Copy to Clipboard

You can append query options to the URI in the following format,

`?options=value&option2=value&…​`
Copy to Clipboard

For example, in order to call the function myCamelFunction from the project myProject and location us-central1, use the following snippet:

from("google-secret-manager://myProject?serviceAccountKey=/home/user/Downloads/my-key.json&operation=createSecret")
  .to("direct:test");
Copy to Clipboard

43.4. Configuring Options

Camel components are configured on two separate levels:

  • component level
  • endpoint level

43.4.1. Configuring Component Options

At the component level, you set general and shared configurations that are, then, inherited by the endpoints. It is the highest configuration level. For example, a component may have security settings, credentials for authentication, urls for network connection and so forth. Some components only have a few options, and others may have many. Because components typically have pre-configured defaults that are commonly used, then you may often only need to configure a few options on a component; or none at all.

You can configure components using:

  • the Component DSL.
  • in a configuration file (application.properties, *.yaml files, etc).
  • directly in the Java code.

43.4.2. Configuring Endpoint Options

You usually spend more time setting up endpoints because they have many options. These options help you customize what you want the endpoint to do. The options are also categorized into whether the endpoint is used as a consumer (from), as a producer (to), or both.

Configuring endpoints is most often done directly in the endpoint URI as path and query parameters. You can also use the Endpoint DSL and DataFormat DSL as a type safe way of configuring endpoints and data formats in Java.

A good practice when configuring options is to use Property Placeholders.

Property placeholders provide a few benefits:

  • They help prevent using hardcoded urls, port numbers, sensitive information, and other settings.
  • They allow externalizing the configuration from the code.
  • They help the code to become more flexible and reusable.

The following two sections list all the options, firstly for the component followed by the endpoint.

43.5. Component Options

The Google Secret Manager component supports 2 options, which are listed below.

NameDescriptionDefaultType

lazyStartProducer (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

autowiredEnabled (advanced)

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

43.6. Endpoint Options

The Google Secret Manager endpoint is configured using URI syntax:

google-secret-manager:project
Copy to Clipboard

With the following path and query parameters:

43.6.1. Path Parameters (1 parameters)

NameDescriptionDefaultType

project (common)

Required The Google Cloud Project Id name related to the Secret Manager.

 

String

43.6.2. Query Parameters (5 parameters)

NameDescriptionDefaultType

serviceAccountKey (common)

Service account key to authenticate an application as a service account.

 

String

operation (producer)

The operation to perform on the producer.

Enum values:

  • createSecret
 

GoogleSecretManagerOperations

pojoRequest (producer)

Specifies if the request is a pojo request.

false

boolean

lazyStartProducer (producer (advanced))

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

client (advanced)

Autowired The client to use during service invocation.

 

SecretManagerServiceClient

43.7. Message Headers

The Google Secret Manager component supports 3 message header(s), which is/are listed below:

NameDescriptionDefaultType

GoogleSecretManagerOperation (producer)

Constant: OPERATION

The operation to perform.

Enum values:

  • createSecret
  • getSecretVersion
  • deleteSecret
  • listSecrets
 

GoogleSecretManagerOperations

CamelGoogleSecretManagerSecretId (producer)

Constant: SECRET_ID

The id of the secret.

 

String

CamelGoogleSecretManagerVersionId (producer)

Constant: VERSION_ID

The version of the secret.

latest

String

43.7.1. Using GCP Secret Manager Properties Source

To use GCP Secret Manager, you need to provide serviceAccountKey file and GCP projectId. This can be done using environmental variables before starting the application:

export $CAMEL_VAULT_GCP_SERVICE_ACCOUNT_KEY=file://path/to/service.accountkey
export $CAMEL_VAULT_GCP_PROJECT_ID=projectId
Copy to Clipboard

You can also configure the credentials in the application.properties file as follows:

camel.vault.gcp.serviceAccountKey = serviceAccountKey
camel.vault.gcp.projectId = projectId
Copy to Clipboard

If you want to use the GCP default client instance , you will need to provide the following env variables:

export $CAMEL_VAULT_GCP_USE_DEFAULT_INSTANCE=true
export $CAMEL_VAULT_GCP_PROJECT_ID=projectId
Copy to Clipboard

You can also configure the credentials in the application.properties file as follows:

camel.vault.gcp.useDefaultInstance = true
camel.vault.gcp.projectId = region
Copy to Clipboard
Note

camel.vault.gcp configuration only applies to the Google Secret Manager properties function (for example, when resolving properties). When using the operation option to create, get, list secrets etc., you should provide the usual options for connecting to GCP Services.

At this point you can reference a property in the following way by using gcp: as prefix in the {{ }} syntax:

<camelContext>
    <route>
        <from uri="direct:start"/>
        <to uri="{{gcp:route}}"/>
    </route>
</camelContext>
Copy to Clipboard

Where route will be the name of the secret stored in the GCP Secret Manager Service.

You could specify a default value in case the secret is not present on GCP Secret Manager:

<camelContext>
    <route>
        <from uri="direct:start"/>
        <to uri="{{gcp:route:default}}"/>
    </route>
</camelContext>
Copy to Clipboard

In this case, if the secret doesn’t exist, the property will fall back to default as value.

Also, you can get a particular field of the secret, if you have, for example, a secret named database of this form:

{
  "username": "admin",
  "password": "password123",
  "engine": "postgres",
  "host": "127.0.0.1",
  "port": "3128",
  "dbname": "db"
}
Copy to Clipboard

You can get a single secret value in your route, for example:

<camelContext>
    <route>
        <from uri="direct:start"/>
        <log message="Username is {{gcp:database/username}}"/>
    </route>
</camelContext>
Copy to Clipboard

Or re-use the property as part of an endpoint.

You could specify a default value in case the particular field of secret is not present on GCP Secret Manager:

<camelContext>
    <route>
        <from uri="direct:start"/>
        <log message="Username is {{gcp:database/username:admin}}"/>
    </route>
</camelContext>
Copy to Clipboard

In this case, if the secret doesn’t exist or the secret exists, but the username field is not part of the secret, the property will fall back to "admin" as value.

There is also the syntax to get a particular version of the secret for both the approach, with field/default value specified or only with secret:

<camelContext>
    <route>
        <from uri="direct:start"/>
        <to uri="{{gcp:route@1}}"/>
    </route>
</camelContext>
Copy to Clipboard

This approach will return the RAW route secret with version '1'.

<camelContext>
    <route>
        <from uri="direct:start"/>
        <to uri="{{gcp:route:default@1}}"/>
    </route>
</camelContext>
Copy to Clipboard

This approach will return the route secret value with version '1' or default value in case the secret doesn’t exist or the version doesn’t exist.

<camelContext>
    <route>
        <from uri="direct:start"/>
        <log message="Username is {{gcp:database/username:admin@1}}"/>
    </route>
</camelContext>
Copy to Clipboard

This approach will return the username field of the database secret with version '1' or admin in case the secret doesn’t exist or the version doesn’t exist.

There are only two requirements:

  • Adding camel-google-secret-manager JAR to your Camel application.
  • Give the service account used permissions to do operation at secret management level, (for example, accessing the secret payload, or being admin of secret manager service)

43.7.2. Automatic CamelContext reloading on Secret Refresh

Being able to reload Camel context on a Secret Refresh is achieved by specifying the usual credentials (the same used for Google Secret Manager Property Function).

With Environment variables:

export $CAMEL_VAULT_GCP_USE_DEFAULT_INSTANCE=true
export $CAMEL_VAULT_GCP_PROJECT_ID=projectId
Copy to Clipboard

or as plain Camel main properties:

camel.vault.gcp.useDefaultInstance = true
camel.vault.gcp.projectId = projectId
Copy to Clipboard

Or by specifying a path to a service account key file, instead of using the default instance.

To enable the automatic refresh, you will need to set the additional properties:

camel.vault.gcp.projectId= projectId
camel.vault.gcp.refreshEnabled=true
camel.vault.gcp.refreshPeriod=60000
camel.vault.gcp.secrets=hello*
camel.vault.gcp.subscriptionName=subscriptionName
camel.main.context-reload-enabled = true
Copy to Clipboard

where camel.vault.gcp.refreshEnabled will enable the automatic context reload, camel.vault.gcp.refreshPeriod is the interval of time between two different checks for update events and camel.vault.gcp.secrets is a regex representing the secrets we want to track for updates.

Note that camel.vault.gcp.secrets is not mandatory. If not specified the task responsible for checking updates events will take into accounts or the properties with an gcp: prefix.

The camel.vault.gcp.subscriptionName is the subscription name created in relation to the Google PubSub topic associated with the tracked secrets.

This mechanism while making use of the notification system related to Google Secret Manager: through this feature, every secret could be associated with one up to ten Google Pubsub Topics. These topics will receive events related to the life cycle of the secret.

There are only two requirements:

  • Adding camel-google-secret-manager JAR to your Camel application.
  • Give the service account used permissions to do operation at secret management level, (for example, accessing the secret payload, or being admin of secret manager service and also have permission over the Pubsub service).

43.7.3. Automatic CamelContext reloading on Secret Refresh - Required infrastructure’s creation

you need to install the gcloud cli from the https://cloud.google.com/sdk/docs/install. Once the Cli has been installed we can proceed to log in and to set up the project with the following commands:

gcloud auth login
Copy to Clipboard

and

gcloud projects create <projectId> --name="GCP Secret Manager Refresh"
Copy to Clipboard

The project will need a service identity for using secret manager service which you can obtain through the command:

gcloud beta services identity create --service "secretmanager.googleapis.com" --project <project_id>
Copy to Clipboard

The following command will provide a service account name that we need to export:

export SM_SERVICE_ACCOUNT="service-...."
Copy to Clipboard

Since we want to have notifications about events related to a specific secret through a Google Pubsub topic we’ll need to create a topic for this purpose with the following command:

gcloud pubsub topics create "projects/<project_id>/topics/pubsub-gcp-sec-refresh"
Copy to Clipboard

The service account will need Secret Manager authorization to publish messages on the topic just created, so we’ll need to add an iam policy binding with the following command:

gcloud pubsub topics add-iam-policy-binding pubsub-gcp-sec-refresh --member "serviceAccount:${SM_SERVICE_ACCOUNT}" --role "roles/pubsub.publisher" --project <project_id>
Copy to Clipboard

We now need to create a subscription to the pubsub-gcp-sec-refresh just created and call it sub-gcp-sec-refresh with the following command:

gcloud pubsub subscriptions create "projects/<project_id>/subscriptions/sub-gcp-sec-refresh" --topic "projects/<project_id>/topics/pubsub-gcp-sec-refresh"
Copy to Clipboard

Now we need to create a service account for running our application:

gcloud iam service-accounts create gcp-sec-refresh-sa --description="GCP Sec Refresh SA" --project <project_id>
Copy to Clipboard

Let’s give the SA an owner role:

gcloud projects add-iam-policy-binding <project_id> --member="serviceAccount:gcp-sec-refresh-sa@<project_id>.iam.gserviceaccount.com" --role="roles/owner"
Copy to Clipboard

Now we should create a Service account key file for the just create SA:

gcloud iam service-accounts keys create <project_id>.json --iam-account=gcp-sec-refresh-sa@<project_id>.iam.gserviceaccount.com
Copy to Clipboard

Let’s enable the Secret Manager API for our project.

gcloud services enable secretmanager.googleapis.com --project <project_id>
Copy to Clipboard

Also enable the PubSub API as follows:

gcloud services enable pubsub.googleapis.com --project <project_id>
Copy to Clipboard

If needed enable also the Billing API.

Now it’s time to create our secret, with topic notification:

gcloud secrets create <secret_name> --topics=projects/<project_id>/topics/pubsub-gcp-sec-refresh --project=<project_id>
Copy to Clipboard

And add the value

gcloud secrets versions add <secret_name> --data-file=<json_secret> --project=<project_id>
Copy to Clipboard

You could now use the projectId and the service account json file to recover the secret.

43.7.4. Google Secret Manager Producer operations

Google Functions component provides the following operation on the producer side:

  • createSecret
  • getSecretVersion
  • deleteSecret
  • listSecrets

If you don’t specify an operation by default, the producer will use the createSecret operation.

43.7.5. Google Secret Manager Producer Operation examples

  • createSecret: This operation will create a secret in the Secret Manager service
from("direct:start")
    .setHeader("GoogleSecretManagerConstants.SECRET_ID, constant("test"))
    .setBody(constant("hello"))
    .to("google-functions://myProject?serviceAccountKey=/home/user/Downloads/my-key.json&operation=createSecret")
    .log("body:${body}")
Copy to Clipboard
  • getSecretVersion: This operation will retrieve a secret value with the latest version in the Secret Manager service
from("direct:start")
    .setHeader("GoogleSecretManagerConstants.SECRET_ID, constant("test"))
    .to("google-functions://myProject?serviceAccountKey=/home/user/Downloads/my-key.json&operation=getSecretVersion")
    .log("body:${body}")
Copy to Clipboard

This will log the value of the secret "test".

  • deleteSecret: This operation will delete a secret
from("direct:start")
    .setHeader("GoogleSecretManagerConstants.SECRET_ID, constant("test"))
    .to("google-functions://myProject?serviceAccountKey=/home/user/Downloads/my-key.json&operation=deleteSecret")
Copy to Clipboard
  • listSecrets: This operation will return the secrets' list for the project myProject
from("direct:start")
    .setHeader("GoogleSecretManagerConstants.SECRET_ID, constant("test"))
    .to("google-functions://myProject?serviceAccountKey=/home/user/Downloads/my-key.json&operation=listSecrets")
Copy to Clipboard

43.8. Spring Boot Auto-Configuration

The component supports 3 options, which are listed below.

NameDescriptionDefaultType

camel.component.google-secret-manager.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.google-secret-manager.enabled

Whether to enable auto configuration of the google-secret-manager component. This is enabled by default.

 

Boolean

camel.component.google-secret-manager.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

Back to top
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2025 Red Hat