Temporal Web UI environment variables reference
You can use environment variables to dynamically alter the configuration of your Temporal Web UI.
These can be used in many environments such as Docker. For example:
The environment variables are defined in the UI server configuration template file and described in more detail below.
TEMPORAL_ADDRESS
β
The Frontend Service π
temporalGrpcAddress
.This variable is required for setting other environmental variables.
TEMPORAL_UI_PORT
β
The port used by the Temporal WebUI Server and the HTTP API.
This variable is needed for TEMPORAL_OPENAPI_ENABLED
and all auth-related settings to work properly.
TEMPORAL_PUBLIC_PATH
β
Stores a value such as "" or "/custom-path" that allows the UI to be served from a subpath.
TEMPORAL_AUTH_ENABLED
β
Enables or disables Web UI authentication and authorization methods.
When enabled, the Web UI will use the provider information in the UI configuration file π
All auth-related variables can be defined when TEMPORAL_AUTH_ENABLED
is set to "true".
Disabling the variable will retain given values.
TEMPORAL_AUTH_PROVIDER_URL
β
The .well-known IDP discovery URL for authentication and authorization.
This can be set as in the UI server configuration with auth π
TEMPORAL_AUTH_ISSUER_URL
β
The URL for the authentication or authorization issuer.
This value is only needed when the issuer differes from the auth provider URL.
TEMPORAL_AUTH_CLIENT_ID
β
The client ID used for authentication or authorization.
This value is a required parameter.
TEMPORAL_AUTH_CLIENT_SECRET
β
The client secret used for authentication and authorization.
Client Secrets are used by the oAuth Client for authentication.
TEMPORAL_AUTH_CALLBACK_URL
β
The callback URL used by Temporal for authentication and authorization.
Callback URLs are invoked by IDP after user has finished authenticating in IDP.
TEMPORAL_UI_ENABLED
β
Enables or disables the browser UI π
Enabling the browser UI allows the Server to be accessed from your web browser. If disabled, the server cannot be viewed on the web, but the UI server APIs remain available for use.
TEMPORAL_OPENAPI_ENABLED
β
Enables or disables OpenAPI features for the Temporal Web UI.
This can be set initially with the enableOpenAPI π
/openapi/
on your Temporal Cluster.This variable requires TEMPORAL_UI_ENABLED
to be set to 'true'.
TEMPORAL_DEFAULT_NAMESPACE
β
The default Namespace π
TEMPORAL_FEEDBACK_URL
β
The URL that users are directed to when they click the Feedback button in the UI.
If not specified, this variable defaults to the UI's GitHub Issue page.
TEMPORAL_NOTIFY_ON_NEW_VERSION
β
Enables or disables notifications that appear in the UI whenever a newer version of the Temporal Cluster is available.
TEMPORAL_CONFIG_REFRESH_INTERVAL
β
Determines how often the UI Server reads the configuration file for new values.
TEMPORAL_TLS_CA
β
The path for the Transport Layer Security (TLS) Certificate Authority file.
In order to configure TLS for your server π
TEMPORAL_TLS_CERT
β
The path for the Transport Layer Security (TLS) Certificate.
In order to configure TLS for your server π
TEMPORAL_TLS_KEY
β
The path for the Transport Layer Security (TLS) key file π
A key file is used to create private and public keys for encryption and signing. Together, these keys are used to create certificates.
TEMPORAL_TLS_CA_DATA
β
Stores the data for a TLS CA file.
This variable can be used instead of providing a path for TEMPORAL_TLS_CA
.
TEMPORAL_TLS_CERT_DATA
β
Stores the data for a TLS cert file.
This variable can be used instead of providing a path for TEMPORAL_TLS_CERT
.
TEMPORAL_TLS_KEY_DATA
β
Stores the data for a TLS key file.
This variable can be used instead of providing a path for TEMPORAL_TLS_KEY
.
TEMPORAL_TLS_ENABLE_HOST_VERIFICATION
β
Enables or disables Transport Layer Security (TLS) host verification.
When enabled, TLS checks the Host Server to ensure that files are being sent to and from the correct URL.
TEMPORAL_TLS_SERVER_NAME
β
The server on which to operate Transport Layer Security (TLS) protocols.
TLS allows the current server to transmit encrypted files to other URLs without having to reveal itself. Because of this, TLS operates a go-between server.
TEMPORAL_CODEC_ENDPOINT
β
The endpoint for the Codec Server π
TEMPORAL_CODEC_PASS_ACCESS_TOKEN
β
Whether to send a JWT access token as βauthorizationβ header in requests with the Codec Server.
TEMPORAL_FORWARD_HEADERS
β
Forward-specified HTTP headers to direct from HTTP API requests to the Temporal gRPC backend.
TEMPORAL_DISABLE_WRITE_ACTIONS
β
Disables any button in the UI that allows the user to modify Workflows or Activities.