Skip to main content
Version: 8.8 (unreleased)

Properties reference

Properties for the Camunda Spring SDK.

Properties

camunda.client

Properties for the Camunda client.

Configuration Property/Environment VariableTypeDefault valueDescription
camunda.client.ca-certificate-path
CAMUNDA_CLIENT_CACERTIFICATEPATH
stringnull

The path to a root Certificate Authority (CA) certificate to use instead of the certificate in the default store.

camunda.client.enabled
CAMUNDA_CLIENT_ENABLED
booleantrue

Enable or disable the Camunda client. If disabled, the client bean is not created.

camunda.client.execution-threads
CAMUNDA_CLIENT_EXECUTIONTHREADS
integer1

The number of threads for invocation of job workers.

camunda.client.grpc-address
CAMUNDA_CLIENT_GRPCADDRESS
url"http://0.0.0.0:26500"

The gRPC address of Camunda that the client can connect to. The address must be an absolute URL, including the scheme. An alternative default is set by both camunda.client.mode.

camunda.client.keep-alive
CAMUNDA_CLIENT_KEEPALIVE
durationnull

The time interval between keep-alive messages sent to the gateway.

camunda.client.max-message-size
CAMUNDA_CLIENT_MAXMESSAGESIZE
dataSize"5MB"

A custom maxMessageSize sets the maximum inbound message size the client can receive from Camunda. It specifies the maxInboundMessageSize of the gRPC channel.

camunda.client.max-metadata-size
CAMUNDA_CLIENT_MAXMETADATASIZE
dataSize"16KB"

A custom maxMetadataSize sets the maximum inbound metadata size the client can receive from Camunda. It specifies the maxInboundMetadataSize of the gRPC channel.

camunda.client.message-time-to-live
CAMUNDA_CLIENT_MESSAGETIMETOLIVE
duration"PT1H"

The default time-to-live for a message when no value is provided.

camunda.client.mode
CAMUNDA_CLIENT_MODE
enum[self-managed, saas]null

The client mode to use. If not set, saas mode is detected based on the presence of a camunda.client.cloud.cluster-id.

camunda.client.override-authority
CAMUNDA_CLIENT_OVERRIDEAUTHORITY
stringnull

Overrides the authority used with TLS virtual hosting to change hostname verification during the TLS handshake. It does not change the actual host connected to.

camunda.client.prefer-rest-over-grpc
CAMUNDA_CLIENT_PREFERRESTOVERGRPC
booleanfalse

If true, prefers REST over gRPC for operations supported by both protocols.

camunda.client.request-timeout
CAMUNDA_CLIENT_REQUESTTIMEOUT
duration"PT10S"

The request timeout to use when not overridden by a specific command.

camunda.client.request-timeout-offset
CAMUNDA_CLIENT_REQUESTTIMEOUTOFFSET
duration"PT1S"

The request timeout client offset applies to commands that also pass the request timeout to the server. It ensures the client timeout occurs after the server timeout. For these commands, the client-side timeout equals the request timeout plus the offset.

camunda.client.rest-address
CAMUNDA_CLIENT_RESTADDRESS
url"http://0.0.0.0:8080"

The REST API address of the Camunda instance that the client can connect to. The address must be an absolute URL, including the scheme. An alternative default is set by bothcamunda.client.mode.

camunda.client.tenant-id
CAMUNDA_CLIENT_TENANTID
string"<default>"

The tenant ID used for tenant-aware commands when no tenant ID is set.

camunda.client.auth

Properties for authenticating the Camunda client.

Configuration Property/Environment VariableTypeDefault valueDescription
camunda.client.auth.audience
CAMUNDA_CLIENT_AUTH_AUDIENCE
stringnull

The resource for which the access token must be valid. A default is set by camunda.client.mode: saas and camunda.client.auth.method: oidc.

camunda.client.auth.client-id
CAMUNDA_CLIENT_AUTH_CLIENTID
stringnull

The client ID to use when requesting an access token from the OAuth authorization server.

camunda.client.auth.client-secret
CAMUNDA_CLIENT_AUTH_CLIENTSECRET
stringnull

The client secret to use when requesting an access token from the OAuth authorization server.

camunda.client.auth.connect-timeout
CAMUNDA_CLIENT_AUTH_CONNECTTIMEOUT
duration"PT5S"

The connection timeout for requests to the OAuth credentials provider.

camunda.client.auth.credentials-cache-path
CAMUNDA_CLIENT_AUTH_CREDENTIALSCACHEPATH
string"$HOME/.camunda/credentials"

The path to the credentials cache file.

camunda.client.auth.keystore-key-password
CAMUNDA_CLIENT_AUTH_KEYSTOREKEYPASSWORD
stringnull

The keystore key password for the OAuth identity provider.

camunda.client.auth.keystore-password
CAMUNDA_CLIENT_AUTH_KEYSTOREPASSWORD
stringnull

The keystore password for the OAuth identity provider.

camunda.client.auth.keystore-path
CAMUNDA_CLIENT_AUTH_KEYSTOREPATH
filenull

The path to the keystore for the OAuth identity provider.

camunda.client.auth.method
CAMUNDA_CLIENT_AUTH_METHOD
enum[none, basic, oidc]null

The authentication method to use. If not set, it is detected based on the presence of a username, password, client ID, and client secret. A default is set by camunda.client.mode: saas.

camunda.client.auth.password
CAMUNDA_CLIENT_AUTH_PASSWORD
stringnull

The password to be use for basic authentication. A default is set by camunda.client.auth.method: basic.

camunda.client.auth.read-timeout
CAMUNDA_CLIENT_AUTH_READTIMEOUT
duration"PT5S"

The data read timeout for requests to the OAuth credentials provider.

camunda.client.auth.resource
CAMUNDA_CLIENT_AUTH_RESOURCE
stringnull

The resource for which the access token must be valid.

camunda.client.auth.scope
CAMUNDA_CLIENT_AUTH_SCOPE
stringnull

The scopes of the access token.

camunda.client.auth.token-url
CAMUNDA_CLIENT_AUTH_TOKENURL
urlnull

The authorization server URL from which to request the access token. A default is set by camunda.client.mode: saas and camunda.client.auth.method: oidc.

camunda.client.auth.truststore-password
CAMUNDA_CLIENT_AUTH_TRUSTSTOREPASSWORD
stringnull

The truststore password for the OAuth identity provider.

camunda.client.auth.truststore-path
CAMUNDA_CLIENT_AUTH_TRUSTSTOREPATH
filenull

The path to the truststore for the OAuth identity provider.

camunda.client.auth.username
CAMUNDA_CLIENT_AUTH_USERNAME
stringnull

The username to use for basic authentication. A default is set by camunda.client.auth.method: basic.

camunda.client.auth.client-assertion

Properties for OIDC authentication using a client assertion instead of a client secret.

Configuration Property/Environment VariableTypeDefault valueDescription
camunda.client.auth.client-assertion.keystore-key-alias
CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREKEYALIAS
stringnull

The alias of the key containing the certificate used to sign the client assertion certificate. If not set, the first alias from the keystore is used.

camunda.client.auth.client-assertion.keystore-key-password
CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREKEYPASSWORD
stringnull

The password of the key referenced by the alias. If not set, the keystore password is used.

camunda.client.auth.client-assertion.keystore-password
CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREPASSWORD
stringnull

The password of the referenced keystore.

camunda.client.auth.client-assertion.keystore-path
CAMUNDA_CLIENT_AUTH_CLIENTASSERTION_KEYSTOREPATH
filenull

The path to the keystore where the client assertion certificate is stored.

camunda.client.cloud

Properties for connecting the Camunda client to SaaS. These are used to compose default connection details when the client is configured to camunda.client.mode: saas.

Configuration Property/Environment VariableTypeDefault valueDescription
camunda.client.cloud.cluster-id
CAMUNDA_CLIENT_CLOUD_CLUSTERID
stringnull

The cluster ID the Camunda client connects to.

camunda.client.cloud.domain
CAMUNDA_CLIENT_CLOUD_DOMAIN
stringnull

The domain the Camunda client connects to. Change this to connect to a non-production instance of Camunda Cloud.

camunda.client.cloud.port
CAMUNDA_CLIENT_CLOUD_PORT
integernull

The port the Camunda client connects to.

camunda.client.cloud.region
CAMUNDA_CLIENT_CLOUD_REGION
stringnull

The region the Camunda client connects to.

camunda.client.deployment

Properties for automatic deployment at startup.

Configuration Property/Environment VariableTypeDefault valueDescription
camunda.client.deployment.enabled
CAMUNDA_CLIENT_DEPLOYMENT_ENABLED
booleantrue

Indicates if deployment uses the @Deployment annotation.

camunda.client.worker.defaults

Global default properties for job workers registered to the Camunda client.

Configuration Property/Environment VariableTypeDefault valueDescription
camunda.client.worker.defaults.auto-complete
CAMUNDA_CLIENT_WORKER_DEFAULTS_AUTOCOMPLETE
booleannull

Enable or disable automatic job completion after method invocation.

camunda.client.worker.defaults.enabled
CAMUNDA_CLIENT_WORKER_DEFAULTS_ENABLED
booleannull

Enable or disable the job worker.

camunda.client.worker.defaults.fetch-variables
CAMUNDA_CLIENT_WORKER_DEFAULTS_FETCHVARIABLES
array[string]null

List of variable names to fetch on job activation. When set in defaults, it extends the list of variables to fetch from the annotation. When set in an override, it replaces the list of variables to fetch.

camunda.client.worker.defaults.force-fetch-all-variables
CAMUNDA_CLIENT_WORKER_DEFAULTS_FORCEFETCHALLVARIABLES
booleannull

Sets whether all variables are fetched. Overrides fetch-variables.

camunda.client.worker.defaults.max-jobs-active
CAMUNDA_CLIENT_WORKER_DEFAULTS_MAXJOBSACTIVE
integer32

The maximum number of jobs exclusively activated for this worker at the same time.

camunda.client.worker.defaults.max-retries
CAMUNDA_CLIENT_WORKER_DEFAULTS_MAXRETRIES
integernull

The maximum number of retries before automatic responses (complete, fail, bpmn error) for jobs are no longer attempted.

camunda.client.worker.defaults.name
CAMUNDA_CLIENT_WORKER_DEFAULTS_NAME
string"default"

The name of the worker owner. If set to default, it is generated as ${beanName}#${methodName}.

camunda.client.worker.defaults.poll-interval
CAMUNDA_CLIENT_WORKER_DEFAULTS_POLLINTERVAL
duration"PT0.1S"

The maximal interval between polls for new jobs.

camunda.client.worker.defaults.request-timeout
CAMUNDA_CLIENT_WORKER_DEFAULTS_REQUESTTIMEOUT
durationnull

The request timeout for the activate job request used to poll for new jobs.

camunda.client.worker.defaults.stream-enabled
CAMUNDA_CLIENT_WORKER_DEFAULTS_STREAMENABLED
booleanfalse

Opt-in feature flag that enables job streaming. When enabled, the job worker uses both streaming and polling to activate jobs. A long-lived stream eagerly pushes new jobs, and polling retrieves jobs created before any streams were opened.

camunda.client.worker.defaults.stream-timeout
CAMUNDA_CLIENT_WORKER_DEFAULTS_STREAMTIMEOUT
durationnull

If streaming is enabled, sets the maximum lifetime for a stream. When this timeout is reached, the stream closes, and no more jobs are activated or received. If the worker is still open, a new stream opens immediately.

camunda.client.worker.defaults.tenant-ids
CAMUNDA_CLIENT_WORKER_DEFAULTS_TENANTIDS
array[string]["<default>"]

Sets the tenants for which the job worker is registered. When set in defaults, it extends the list of tenant IDs from the annotation. When set in override, it replaces the list of tenant IDs.

camunda.client.worker.defaults.timeout
CAMUNDA_CLIENT_WORKER_DEFAULTS_TIMEOUT
duration"PT5M"

The time a job remains exclusively assigned to the worker.

camunda.client.worker.defaults.type
CAMUNDA_CLIENT_WORKER_DEFAULTS_TYPE
stringnull

The type of jobs to work on.

camunda.client.worker.override

Properties for overriding settings of individual job workers registered to the Camunda client. Overrides are specified as key-value pairs, where the key is the worker's job type and the values have the same properties as camunda.client.worker.defaults each: camunda.client.worker.override.<job-type>.<property-name>: <property-value>.

Deprecated properties

caution

The following properties are deprecated. See the replacement property and related hints.

The deprecated properties are still effective if their replacement is not used yet. The SDK hints on the usage of deprecated properties by logging warn statements during startup.

camunda.client

Deprecated properties for the Camunda client.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.cluster-id
CAMUNDA_CLIENT_CLUSTERID
stringcamunda.client.cloud.cluster-id
camunda.client.region
CAMUNDA_CLIENT_REGION
stringcamunda.client.cloud.region
camunda.client.tenant-ids
CAMUNDA_CLIENT_TENANTIDS
array[string]camunda.client.worker.defaults.tenant-ids

camunda.client.auth

Deprecated properties for authenticating the Camunda client.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.auth.issuer
CAMUNDA_CLIENT_AUTH_ISSUER
urlcamunda.client.auth.token-url

camunda.client.cloud

Deprecated properties for connecting the Camunda client to SaaS. These are used to compose default connection details when the client is configured to camunda.client.mode: saas.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.cloud.base-url
CAMUNDA_CLIENT_CLOUD_BASEURL
stringcamunda.client.cloud.domain

camunda.client.identity

Deprecated properties for identity settings.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.identity.audience
CAMUNDA_CLIENT_IDENTITY_AUDIENCE
stringcamunda.client.auth.audience

Identity is now part of Camunda.

camunda.client.identity.base-url
CAMUNDA_CLIENT_IDENTITY_BASEURL
url

Identity is now part of Camunda.

camunda.client.identity.enabled
CAMUNDA_CLIENT_IDENTITY_ENABLED
booleancamunda.client.enabled

Identity is now part of Camunda.

camunda.client.identity.scope
CAMUNDA_CLIENT_IDENTITY_SCOPE
stringcamunda.client.auth.scope

Identity is now part of Camunda.

camunda.client.zeebe

Deprecated properties for Zeebe client settings.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.zeebe.audience
CAMUNDA_CLIENT_ZEEBE_AUDIENCE
stringcamunda.client.auth.audience
camunda.client.zeebe.base-url
CAMUNDA_CLIENT_ZEEBE_BASEURL
urlcamunda.client.rest-address
camunda.client.zeebe.ca-certificate-path
CAMUNDA_CLIENT_ZEEBE_CACERTIFICATEPATH
stringcamunda.client.ca-certificate-path
camunda.client.zeebe.enabled
CAMUNDA_CLIENT_ZEEBE_ENABLED
booleancamunda.client.enabled
camunda.client.zeebe.execution-threads
CAMUNDA_CLIENT_ZEEBE_EXECUTIONTHREADS
integercamunda.client.execution-threads
camunda.client.zeebe.grpc-address
CAMUNDA_CLIENT_ZEEBE_GRPCADDRESS
urlcamunda.client.grpc-address
camunda.client.zeebe.keep-alive
CAMUNDA_CLIENT_ZEEBE_KEEPALIVE
durationcamunda.client.keep-alive
camunda.client.zeebe.max-message-size
CAMUNDA_CLIENT_ZEEBE_MAXMESSAGESIZE
dataSizecamunda.client.max-message-size
camunda.client.zeebe.max-metadata-size
CAMUNDA_CLIENT_ZEEBE_MAXMETADATASIZE
dataSizecamunda.client.max-metadata-size
camunda.client.zeebe.message-time-to-live
CAMUNDA_CLIENT_ZEEBE_MESSAGETIMETOLIVE
durationcamunda.client.message-time-to-live
camunda.client.zeebe.override-authority
CAMUNDA_CLIENT_ZEEBE_OVERRIDEAUTHORITY
stringcamunda.client.override-authority
camunda.client.zeebe.prefer-rest-over-grpc
CAMUNDA_CLIENT_ZEEBE_PREFERRESTOVERGRPC
booleancamunda.client.prefer-rest-over-grpc
camunda.client.zeebe.request-timeout
CAMUNDA_CLIENT_ZEEBE_REQUESTTIMEOUT
durationcamunda.client.request-timeout
camunda.client.zeebe.rest-address
CAMUNDA_CLIENT_ZEEBE_RESTADDRESS
urlcamunda.client.rest-address
camunda.client.zeebe.scope
CAMUNDA_CLIENT_ZEEBE_SCOPE
stringcamunda.client.auth.scope

camunda.client.zeebe.defaults

Deprecated default properties for Zeebe job workers.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.zeebe.defaults.auto-complete
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_AUTOCOMPLETE
booleancamunda.client.worker.defaults.auto-complete
camunda.client.zeebe.defaults.enabled
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_ENABLED
booleancamunda.client.worker.defaults.enabled
camunda.client.zeebe.defaults.fetch-variables
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_FETCHVARIABLES
array[string]camunda.client.worker.defaults.fetch-variables
camunda.client.zeebe.defaults.force-fetch-all-variables
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_FORCEFETCHALLVARIABLES
booleancamunda.client.worker.defaults.force-fetch-all-variables
camunda.client.zeebe.defaults.max-jobs-active
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_MAXJOBSACTIVE
integercamunda.client.worker.defaults.max-jobs-active
camunda.client.zeebe.defaults.max-retries
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_MAXRETRIES
integercamunda.client.worker.defaults.max-retries
camunda.client.zeebe.defaults.name
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_NAME
stringcamunda.client.worker.defaults.name
camunda.client.zeebe.defaults.poll-interval
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_POLLINTERVAL
durationcamunda.client.worker.defaults.poll-interval
camunda.client.zeebe.defaults.request-timeout
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_REQUESTTIMEOUT
durationcamunda.client.worker.defaults.request-timeout
camunda.client.zeebe.defaults.stream-enabled
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_STREAMENABLED
booleancamunda.client.worker.defaults.stream-enabled
camunda.client.zeebe.defaults.stream-timeout
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_STREAMTIMEOUT
durationcamunda.client.worker.defaults.stream-timeout
camunda.client.zeebe.defaults.tenant-ids
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_TENANTIDS
array[string]camunda.client.worker.defaults.tenant-ids
camunda.client.zeebe.defaults.timeout
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_TIMEOUT
durationcamunda.client.worker.defaults.timeout
camunda.client.zeebe.defaults.type
CAMUNDA_CLIENT_ZEEBE_DEFAULTS_TYPE
stringcamunda.client.worker.defaults.type

camunda.client.zeebe.deployment

Deprecated deployment properties for Zeebe.

Configuration Property/Environment VariableTypeReplacementHint
camunda.client.zeebe.deployment.enabled
CAMUNDA_CLIENT_ZEEBE_DEPLOYMENT_ENABLED
booleancamunda.client.deployment.enabled

camunda.client.zeebe.override

Deprecated properties for overriding individual job workers registered to the Camunda client. Replaced by camunda.client.worker.override.

common

Deprecated common client properties.

Configuration Property/Environment VariableTypeReplacementHint
common.auth-url
COMMON_AUTHURL
stringcamunda.client.auth.token-url
common.base-url
COMMON_BASEURL
stringcamunda.client.rest-address
common.client-id
COMMON_CLIENTID
stringcamunda.client.auth.client-id
common.client-secret
COMMON_CLIENTSECRET
stringcamunda.client.auth.client-secret
common.enabled
COMMON_ENABLED
booleancamunda.client.enabled
common.password
COMMON_PASSWORD
stringcamunda.client.auth.password
common.url
COMMON_URL
stringcamunda.client.rest-address

The REST address is the unified endpoint for all interaction with Camunda.

common.username
COMMON_USERNAME
stringcamunda.client.auth.username

common.keycloak

Deprecated Keycloak-specific properties.

Configuration Property/Environment VariableTypeReplacementHint
common.keycloak.realm
COMMON_KEYCLOAK_REALM
string

There is no keycloak-specific configuration for Camunda; the issuer is provided as a URL.

common.keycloak.token-url
COMMON_KEYCLOAK_TOKENURL
stringcamunda.client.auth.token-url

There is no keycloak-specific configuration for Camunda; the issuer is provided as a URL.

common.keycloak.url
COMMON_KEYCLOAK_URL
stringcamunda.client.auth.token-url

There is no keycloak-specific configuration for Camunda; the issuer is provided as a URL.

zeebe.client

Deprecated Zeebe client properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.apply-environment-variable-overrides
ZEEBE_CLIENT_APPLYENVIRONMENTVARIABLEOVERRIDES
boolean

Only the environment variables belonging to the Spring SDK are applied.

zeebe.client.connection-mode
ZEEBE_CLIENT_CONNECTIONMODE
stringcamunda.client.mode

Client modes are now available.

zeebe.client.default-job-worker-stream-enabled
ZEEBE_CLIENT_DEFAULTJOBWORKERSTREAMENABLED
booleancamunda.client.worker.defaults.stream-enabled
zeebe.client.default-job-worker-tenant-ids
ZEEBE_CLIENT_DEFAULTJOBWORKERTENANTIDS
array[string]camunda.client.worker.defaults.tenant-ids
zeebe.client.default-tenant-id
ZEEBE_CLIENT_DEFAULTTENANTID
stringcamunda.client.tenant-id
zeebe.client.enabled
ZEEBE_CLIENT_ENABLED
booleancamunda.client.enabled
zeebe.client.request-timeout
ZEEBE_CLIENT_REQUESTTIMEOUT
durationcamunda.client.request-timeout

zeebe.client.broker

Deprecated Zeebe broker properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.broker.gateway-address
ZEEBE_CLIENT_BROKER_GATEWAYADDRESS
stringcamunda.client.grpc-address
zeebe.client.broker.grpc-address
ZEEBE_CLIENT_BROKER_GRPCADDRESS
urlcamunda.client.grpc-address
zeebe.client.broker.keep-alive
ZEEBE_CLIENT_BROKER_KEEPALIVE
durationcamunda.client.keep-alive
zeebe.client.broker.rest-address
ZEEBE_CLIENT_BROKER_RESTADDRESS
urlcamunda.client.rest-address

zeebe.client.cloud

Deprecated Zeebe cloud connection properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.cloud.auth-url
ZEEBE_CLIENT_CLOUD_AUTHURL
stringcamunda.client.auth.token-url
zeebe.client.cloud.base-url
ZEEBE_CLIENT_CLOUD_BASEURL
stringcamunda.client.cloud.domain
zeebe.client.cloud.client-id
ZEEBE_CLIENT_CLOUD_CLIENTID
stringcamunda.client.auth.client-id
zeebe.client.cloud.client-secret
ZEEBE_CLIENT_CLOUD_CLIENTSECRET
stringcamunda.client.auth.client-secret
zeebe.client.cloud.cluster-id
ZEEBE_CLIENT_CLOUD_CLUSTERID
stringcamunda.client.cloud.cluster-id
zeebe.client.cloud.credentials-cache-path
ZEEBE_CLIENT_CLOUD_CREDENTIALSCACHEPATH
stringcamunda.client.auth.credentials-cache-path
zeebe.client.cloud.port
ZEEBE_CLIENT_CLOUD_PORT
integer

The Zeebe client URL is now configured as HTTP/HTTPS URL.

zeebe.client.cloud.region
ZEEBE_CLIENT_CLOUD_REGION
stringcamunda.client.cloud.region
zeebe.client.cloud.scope
ZEEBE_CLIENT_CLOUD_SCOPE
stringcamunda.client.auth.scope

zeebe.client.job

Deprecated Zeebe job worker properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.job.poll-interval
ZEEBE_CLIENT_JOB_POLLINTERVAL
durationcamunda.client.worker.defaults.poll-interval
zeebe.client.job.timeout
ZEEBE_CLIENT_JOB_TIMEOUT
durationcamunda.client.worker.defaults.timeout

zeebe.client.message

Deprecated Zeebe message properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.message.max-message-size
ZEEBE_CLIENT_MESSAGE_MAXMESSAGESIZE
integercamunda.client.max-message-size
zeebe.client.message.time-to-live
ZEEBE_CLIENT_MESSAGE_TIMETOLIVE
durationcamunda.client.message-time-to-live

zeebe.client.security

Deprecated Zeebe security properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.security.cert-path
ZEEBE_CLIENT_SECURITY_CERTPATH
stringcamunda.client.ca-certificate-path
zeebe.client.security.override-authority
ZEEBE_CLIENT_SECURITY_OVERRIDEAUTHORITY
stringcamunda.client.override-authority
zeebe.client.security.plaintext
ZEEBE_CLIENT_SECURITY_PLAINTEXT
boolean

plaintext is now determined by the URL protocol (HTTP or HTTPS).

zeebe.client.worker

Deprecated Zeebe job worker properties.

Configuration Property/Environment VariableTypeReplacementHint
zeebe.client.worker.default-name
ZEEBE_CLIENT_WORKER_DEFAULTNAME
stringcamunda.client.worker.defaults.name
zeebe.client.worker.default-type
ZEEBE_CLIENT_WORKER_DEFAULTTYPE
stringcamunda.client.worker.defaults.type
zeebe.client.worker.max-jobs-active
ZEEBE_CLIENT_WORKER_MAXJOBSACTIVE
integercamunda.client.worker.defaults.max-jobs-active
zeebe.client.worker.threads
ZEEBE_CLIENT_WORKER_THREADS
integercamunda.client.execution-threads

zeebe.client.worker.override

Deprecated properties to override the individual job workers registered with the Camunda client. Replaced by camunda.client.worker.override.