A workload is the central configuration unit in the Temporal Cloud Proxy. Each workload entry maps aDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/temporal-sa/temporal-cloud-proxy/llms.txt
Use this file to discover all available pages before exploring further.
workload_id string — supplied by workers in the workload-id gRPC metadata header — to a specific Temporal Cloud namespace, along with the credentials the proxy uses to reach that namespace and any optional payload encryption or worker authentication policy. A single proxy instance can serve any number of workloads simultaneously, each with independent settings.
Field reference
A unique string identifier for this workload. Workers must set the
workload-id gRPC metadata header to this value on every request. The proxy uses this header to look up the matching configuration and route the call to the correct Temporal Cloud namespace. Any non-empty string is valid, but values must be unique across all workload entries in the file.The fully qualified Temporal Cloud namespace in
<namespace>.<account> format, for example my-namespace.my-account. This value is injected into every outbound call as the temporal-namespace gRPC metadata header when using API key authentication.The gRPC endpoint address the proxy dials when forwarding calls for this workload.
- mTLS: use
<namespace>.<account>.tmprl.cloud:7233 - API key: use
<region>.<cloud>.api.temporal.io:7233(e.g.us-east-1.aws.api.temporal.io:7233)
Credentials the proxy uses to authenticate with Temporal Cloud. Supports mTLS certificate pairs or API keys. See the Namespace Auth page for the complete reference.
Optional. Payload encryption settings. When present, the proxy encrypts outgoing payloads and decrypts incoming encrypted payloads using AES-GCM with a KMS-managed data key. Workers communicate in plaintext; encryption is entirely transparent to them. Supports
aws-kms and gcp-kms providers. See the Encryption page for the complete reference.Optional. Worker-to-proxy authentication settings. When present, every inbound request must include a valid
authorization: Bearer <token> gRPC metadata header. The proxy validates the token before forwarding the call. Supports jwt and spiffe authenticator types. See the Worker Auth page for the complete reference.Example: two workloads
The following example configures two workloads on a single proxy instance — one production workload using an API key and AWS KMS encryption, and one staging workload using mTLS without encryption.workload-id: production in their gRPC metadata. Workers targeting staging set workload-id: staging. The proxy routes each call independently.
Passthrough mode
If neitherencryption nor authentication is set on a workload, the proxy operates in passthrough mode for that workload: calls are forwarded to Temporal Cloud using only the namespace-level credentials (tls or api_key), with no payload encryption and no worker token validation.
This is useful for initial integration testing or scenarios where workers themselves handle API key injection. However, the proxy logs a startup warning for each workload configured in passthrough mode: