Platform properties and environment variables reference

Platform 6 configuration supports both platform properties and environment variables in a 1:1 mapping. Each platform property has a corresponding environment variable with the ITENTIAL_ prefix.

Property naming convention

Platform properties use lowercase with underscores, while environment variables use uppercase with the ITENTIAL_ prefix:

  • Platform property: mongo_url
  • Environment variable: ITENTIAL_MONGO_URL

Property reference

This section organizes all properties by functional area. In each table, the Property Name column shows the platform property in lowercase followed by its corresponding environment variable in uppercase with the ITENTIAL_ prefix. For example, admin_auth_pages_enabled is a platform property, and the corresponding environment variable is ITENTIAL_ADMIN_AUTH_PAGES_ENABLED.

Administrative features

Configure Admin Essentials features.

Property NameTypeDescription
admin_auth_pages_enabled
ITENTIAL_ADMIN_AUTH_PAGES_ENABLED
booleanDisables the authorization pages in Admin Essentials
admin_status_page_enabled
ITENTIAL_ADMIN_STATUS_PAGE_ENABLED
booleanDisables the status page in Admin Essentials

Authentication configuration

Configure user authentication and session management.

Authorization

Property NameTypeDescription
auth_admin_groups
ITENTIAL_AUTH_ADMIN_GROUPS
jsonMembers of these groups will be implicitly assigned with admin permissions
auth_broker_principal_enabled
ITENTIAL_AUTH_BROKER_PRINCIPAL_ENABLED
booleanEnables a AAA adapter to custom build the principal object for a user with a “buildPrincipal” method

Default user

Property NameTypeDescription
default_user_enabled
ITENTIAL_DEFAULT_USER_ENABLED
booleanEnables a default user to be used for login when SSO is not configured and no AAA Adapter exists
default_user_password
ITENTIAL_DEFAULT_USER_PASSWORD
stringThe password of the default user
default_user_username
ITENTIAL_DEFAULT_USER_USERNAME
stringThe username of the default user

Session settings

Property NameTypeDescription
auth_relay_state_ttl
ITENTIAL_AUTH_RELAY_STATE_TIMEOUT
integerThe time in seconds before the RelayState from sso expires
auth_session_cookie_name
ITENTIAL_AUTH_SESSION_COOKIE_NAME
stringThe name of the cookie used for a user session
auth_session_ttl
ITENTIAL_AUTH_SESSION_TTL
integerThe time in minutes before a user principal expires. If not supplied, falls back to the auth_session_ttl value
auth_session_ttl
ITENTIAL_AUTH_SESSION_TTL
integerThe time in minutes before a user session expires
auth_unique_sessions_enabled
ITENTIAL_AUTH_UNIQUE_SESSIONS_ENABLED
booleanIf true, logs out existing sessions for a user when they log in with a new session

Cache configuration

Configure Redis connection and behavior.

Connection management

Property NameTypeDescription
redis_connect_timeout
ITENTIAL_REDIS_CONNECT_TIMEOUT
integerThe maximum time in milliseconds to wait for initial Redis connection before timing out. If not set, defaults to 30000ms (30 seconds)
redis_max_heartbeat_write_retries
ITENTIAL_REDIS_MAX_HEARTBEAT_WRITE_RETRIES
integerThe maximum number of times to retry writing a heartbeat message to Redis from a service
redis_max_retries_per_request
ITENTIAL_REDIS_MAX_RETRIES_PER_REQUEST
integerThe maximum number of times to retry a request to Redis when the connection is lost
redis_persist_queues
ITENTIAL_REDIS_PERSIST_QUEUES
csvThe platform will match Bull queue names included to persist in Redis on restarts

Connection settings

Property NameTypeDescription
redis_db
ITENTIAL_REDIS_DB
integerThe Redis keyspace (database number) to use for the connection
redis_host
ITENTIAL_REDIS_HOST
stringThe hostname of the Redis server. Not used when connecting to Redis Sentinels
redis_password
ITENTIAL_REDIS_PASSWORD
stringThe password to use when connecting to Redis
redis_port
ITENTIAL_REDIS_PORT
integerThe port to use when connecting to this Redis instance
redis_username
ITENTIAL_REDIS_USERNAME
stringThe username to use when connecting to Redis

Sentinel configuration

Property NameTypeDescription
redis_name
ITENTIAL_REDIS_NAME
stringThe Redis primary name. This only has meaning when Redis is running with replication enabled. The sentinels will monitor this node and consider it down only when the sentinels agree. Note: The primary name should not include special characters other than: .-_ and no whitespaces
redis_sentinel_password
ITENTIAL_REDIS_SENTINEL_PASSWORD
stringThe password to use when authenticating with a Redis Sentinel cluster
redis_sentinel_username
ITENTIAL_REDIS_SENTINEL_USERNAME
stringThe username to use when authenticating with a Redis Sentinel cluster
redis_sentinels
ITENTIAL_REDIS_SENTINELS
jsonThe list of Redis Sentinel servers (hostnames and ports) to use for high availability

TLS settings

Property NameTypeDescription
redis_enable_tls_for_sentinel_mode
ITENTIAL_REDIS_ENABLE_TLS_FOR_SENTINEL_MODE
booleanSet to true if the Redis master requires TLS but the Sentinels do not. When enabled, the Redis client maintains TLS encryption when transitioning from a Sentinel connection to a master connection.
redis_sentinel_tls
ITENTIAL_REDIS_SENTINEL_TLS
jsonTLS configuration options for the Sentinel discovery connection.
redis_tls
ITENTIAL_REDIS_TLS
jsonRedis TLS configuration options for secure connections. Refer to NodeJS TLS library for all supported options
redis_tls_ca
ITENTIAL_REDIS_TLS_CA
stringCA certificate used to verify the Redis server certificate when using TLS. This should be a string containing the PEM-encoded CA certificate
redis_tls_cert
ITENTIAL_REDIS_TLS_CERT
stringClient certificate used to authenticate the client to the Redis server when using TLS. This should be a string containing the PEM-encoded client certificate
redis_tls_key
ITENTIAL_REDIS_TLS_KEY
stringClient private key used to authenticate the client to the Redis server when using TLS. This should be a string containing the PEM-encoded client private key

Database configuration

Configure MongoDB connection and behavior.

Advanced options

Property NameTypeDescription
mongo_bypass_version_check
ITENTIAL_MONGO_BYPASS_VERSION_CHECK
booleanIf true, the server will not check if it is connecting to a compatible MongoDB version

Connection pool

Property NameTypeDescription
mongo_max_idle_time_ms
ITENTIAL_MONGO_MAX_IDLE_TIME_MS
integerThe maximum number of milliseconds that a connection can remain idle in the pool. Set to 0 for no limit
mongo_max_pool_size
ITENTIAL_MONGO_MAX_POOL_SIZE
integerThe maximum number of connections in a connection pool. Each application/adapter has its own connection pool

Connection settings

Property NameTypeDescription
mongo_auth_db
ITENTIAL_MONGO_AUTH_DB
stringThe name of the database that the MongoDB user must authenticate against
mongo_auth_enabled
ITENTIAL_MONGO_AUTH_ENABLED
booleanInstructs the MongoDB driver to use the configured username/password when connecting to MongoDB
mongo_db_name
ITENTIAL_MONGO_DB_NAME
stringThe name of the MongoDB logical database to connect to
mongo_password
ITENTIAL_MONGO_PASSWORD
stringThe password to use when connecting to MongoDB
mongo_url
ITENTIAL_MONGO_URL
stringThe MongoDB connection string. For a replica set this will include all members of the replica set. For Mongo Atlas this will be the SRV connection format
mongo_user
ITENTIAL_MONGO_USER
stringThe username to use when connecting to MongoDB

TLS settings

Property NameTypeDescription
mongo_ssl_accept_invalid_certs
ITENTIAL_MONGO_SSL_ACCEPT_INVALID_CERTS
booleanDeprecated in favor of the mongo_tls_allow_invalid_certificates property
mongo_ssl_ca_file
ITENTIAL_MONGO_SSL_CA_FILE
stringDeprecated in favor of the mongo_tls_ca_file property
mongo_ssl_enabled
ITENTIAL_MONGO_SSL_ENABLED
booleanDeprecated in favor of the mongo_tls_enabled property
mongo_tls_allow_invalid_certificates
ITENTIAL_MONGO_TLS_ALLOW_INVALID_CERTIFICATES
booleanIf true, disables the validation checks for TLS certificates on other servers in the cluster and allows the use of invalid or self-signed certificates to connect
mongo_tls_ca_contents
ITENTIAL_MONGO_TLS_CA_CONTENTS
stringRoot certificate chain from the Certificate Authority. This should be a string containing the PEM-encoded certificate
mongo_tls_ca_file
ITENTIAL_MONGO_TLS_CA_FILE
stringThe .pem file that contains the root certificate chain from the Certificate Authority. Specify the file name of the .pem file using absolute paths
mongo_tls_enabled
ITENTIAL_MONGO_TLS_ENABLED
booleanInstruct the MongoDB driver to use TLS protocols when connecting to the database

Device management

Configure device broker behavior.

Property NameTypeDescription
device_broker_default_adapter_priority
ITENTIAL_DEVICE_BROKER_DEFAULT_ADAPTER_PRIORITY
csvA list of adapter types that manages the devices
device_broker_run_command_adapter_preference
ITENTIAL_DEVICE_BROKER_RUN_COMMAND_ADAPTER_PREFERENCE
stringRuns a command on a device
device_count_polling_interval
ITENTIAL_DEVICE_COUNT_POLLING_INTERVAL
integerThe interval for how often the platform polls for the number of devices, in hours

Integration configuration

Configure external API behavior.

Property NameTypeDescription
external_request_timeout
ITENTIAL_EXTERNAL_REQUEST_TIMEOUT
integerThe timeout for external API requests, in seconds
integration_thread_count
ITENTIAL_INTEGRATION_THREAD_COUNT
integerThe number of threads available for API requests
integration_timeout
ITENTIAL_INTEGRATION_TIMEOUT
integerThe number of milliseconds until an integration request times out

Logging configuration

Configure application logging behavior.

File logging

Property NameTypeDescription
log_directory
ITENTIAL_LOG_DIRECTORY
stringThe absolute directory path where log files are written
log_filename
ITENTIAL_LOG_FILENAME
stringThe name of the primary platform log file
log_max_file_size
ITENTIAL_LOG_MAX_FILE_SIZE
integerThe maximum file size in bytes of each log file before rotation occurs
log_max_files
ITENTIAL_LOG_MAX_FILES
integerThe maximum number of each log file to keep as rotation occurs

Log formats

Property NameTypeDescription
console_format_json
ITENTIAL_CONSOLE_FORMAT_JSON
booleanIf true, console logs will be written in JSON format. Otherwise, log entries will be written in plaintext
log_format_json
ITENTIAL_LOG_FORMAT_JSON
booleanIf true, log entries will be written in JSON format. Otherwise, log entries will be written in plaintext

Log levels

Property NameTypeDescription
log_level
ITENTIAL_LOG_LEVEL
stringThe minimum log level to display in the log file
log_level_console
ITENTIAL_LOG_LEVEL_CONSOLE
stringThe minimum log level to display in the console (stdout)
log_level_syslog
ITENTIAL_LOG_LEVEL_SYSLOG
stringThe minimum log level to send to the syslog server

Syslog settings

Property NameTypeDescription
syslog_app_name
ITENTIAL_SYSLOG_APP_NAME
stringThe process property to include as the application name in the syslog message
syslog_eol
ITENTIAL_SYSLOG_EOL
stringThe end of line character to include in the syslog message
syslog_facility
ITENTIAL_SYSLOG_FACILITY
stringThe syslog facility to use when sending logs to the syslog server
syslog_format_json
ITENTIAL_SYSLOG_FORMAT_JSON
booleanIf true, syslog logs will be written in JSON format. Otherwise, log entries will be written in plaintext
syslog_host
ITENTIAL_SYSLOG_HOST
stringThe hostname or IP address of the syslog server
syslog_localhost
ITENTIAL_SYSLOG_LOCALHOST
stringThe hostname to include in the syslog message
syslog_path
ITENTIAL_SYSLOG_PATH
stringThe path to the syslog server file
syslog_pid
ITENTIAL_SYSLOG_PID
stringThe process property to include as the process id in the syslog message
syslog_port
ITENTIAL_SYSLOG_PORT
integerThe port number of the syslog server
syslog_protocol
ITENTIAL_SYSLOG_PROTOCOL
stringThe protocol to use when sending logs to the syslog server
syslog_type
ITENTIAL_SYSLOG_TYPE
stringThe syslog message format to use when sending logs to the syslog server

Monitoring configuration

Configure SNMP alarm notifications.

Property NameTypeDescription
snmp_alarm_configs
ITENTIAL_SNMP_ALARM_CONFIGS
jsonRemote SNMP destination configuration objects

Security configuration

Configure encryption and secrets management.

CyberArk integration

Property NameTypeDescription
cyberark_allow_invalid_certificates
ITENTIAL_CYBERARK_ALLOW_INVALID_CERTIFICATES
booleanIf true, disables the validation checks for TLS certificates and allows the use of invalid or self-signed certificates to connect. Used by CyberArk CCP only
cyberark_app_id
ITENTIAL_CYBERARK_APP_ID
stringSpecifies the unique ID of the application issuing the password request to CyberArk CCP. Used by CyberArk CCP only
cyberark_ca
ITENTIAL_CYBERARK_CA
stringThe .pem file that contains the root certificate chain from the Certificate Authority. Specify the file name of the .pem file using absolute paths. Used by CyberArk CCP only
cyberark_ca_contents
ITENTIAL_CYBERARK_CA_CONTENTS
stringString represenation of the PEM-encoded root certificate chain from the Certificate Authority. Used by CyberArk CCP only
cyberark_certificate
ITENTIAL_CYBERARK_CERTIFICATE
stringThe .pem file that contains the client certificate. Specify the file name of the .pem file using absolute paths. Used by CyberArk CCP only
cyberark_certificate_contents
ITENTIAL_CYBERARK_CERTIFICATE_CONTENTS
stringString representation of the PEM-encoded client certificate. Used by CyberArk CCP only
cyberark_connection_timeout
ITENTIAL_CYBERARK_CONNECTION_TIMEOUT
integerThe number of seconds that the Central Credential Provider will try to retrieve the secret value. Used by CyberArk CCP only
cyberark_key
ITENTIAL_CYBERARK_KEY
stringThe certificate key file location. Specify the location of the key file using absolute paths. Used by CyberArk CCP only
cyberark_key_contents
ITENTIAL_CYBERARK_KEY_CONTENTS
stringString represenation of the PEM-encoded certificate key. Used by CyberArk CCP only
cyberark_reason_text
ITENTIAL_CYBERARK_REASON_TEXT
stringSet this property to the reason for retrieving the password to have the reason text appear in CyberArk Credential Provider’s audit log. Used by CyberArk CCP only
cyberark_url
ITENTIAL_CYBERARK_URL
stringThe URL to the CyberArk Central Credential Provider

Encryption

Property NameTypeDescription
encryption_key
ITENTIAL_ENCRYPTION_KEY
string64-length hex string describing a 256 bit encryption key
platform_encrypted
ITENTIAL_PLATFORM_ENCRYPTED
booleanIndicates whether the platform is using encrypted code files

Secrets providers

Property NameTypeDescription
secret_provider_name
ITENTIAL_SECRET_PROVIDER_NAME
stringName of the secrets provider. Required for CyberArk CCP. Not required for Hashicorp Vault

Vault integration

Property NameTypeDescription
vault_approle_path
ITENTIAL_VAULT_APPROLE_PATH
stringThe path where the AppRole was enabled
vault_auth_method
ITENTIAL_VAULT_AUTH_METHOD
stringThe authorization method to connect to Hashicorp Vault. Either token or approle
vault_read_only
ITENTIAL_VAULT_READ_ONLY
booleanIf true, only reads secrets from Hashicorp Vault. Otherwise, the platform can write secrets to Vault for storage
vault_role_id
ITENTIAL_VAULT_ROLE_ID
stringHashicorp Vault Role ID used for AppRole authentication
vault_secret_id
ITENTIAL_VAULT_SECRET_ID
stringHashicorp Vault Secret ID used for AppRole login
vault_secrets_endpoint
ITENTIAL_VAULT_SECRETS_ENDPOINT
stringThe endpoint for the Secrets Engine that is used
vault_token
ITENTIAL_VAULT_TOKEN
stringThe file path to a token file. The token is used for authentication to access Vault secrets
vault_url
ITENTIAL_VAULT_URL
stringThe URL to the Hashicorp Vault server

Service configuration

Configure service behavior and management.

Health monitoring

Property NameTypeDescription
dead_process_check_enabled
ITENTIAL_DEAD_PROCESS_CHECK_ENABLED
booleanIf true, the platform will periodically check for dead processes
dead_process_check_interval
ITENTIAL_DEAD_PROCESS_CHECK_INTERVAL
integerHow often to check if an application/adapter stopped sending healthcheck pings (dead process), in seconds
dead_process_max_period
ITENTIAL_DEAD_PROCESS_MAX_PERIOD
integerMaximum time period for application/adapter without sending healthcheck ping, in seconds
service_health_check_interval
ITENTIAL_SERVICE_HEALTH_CHECK_INTERVAL
integerHow often to update service health, measured in seconds
service_health_check_unhealthy_threshold
ITENTIAL_SERVICE_HEALTH_CHECK_UNHEALTHY_THRESHOLD
integerThe number of failed health checks in a row before a service is considered to be “unhealthy”

Service lifecycle

Property NameTypeDescription
service_crash_recovery_max_retries
ITENTIAL_SERVICE_CRASH_RECOVERY_MAX_RETRIES
integerSpecifies the amount of times services will retry on crash before stopping
service_crash_recovery_reset_retries_after_ms
ITENTIAL_SERVICE_CRASH_RECOVERY_RESET_RETRIES_AFTER_MS
integerSpecifies the amount of times between each retry before the count will reset in milliseconds
service_launch_delay
ITENTIAL_SERVICE_LAUNCH_DELAY
integerThe application/adapter launch delay, in seconds
service_launch_timeout
ITENTIAL_SERVICE_LAUNCH_TIMEOUT
integerThe application/adapter launch timeout, in seconds

Service management

Property NameTypeDescription
service_blacklist
ITENTIAL_SERVICE_BLACKLIST
csvThe service type that will be denied CRUD operation access
service_directory
ITENTIAL_SERVICE_DIRECTORY
stringThe file path to the directory containing additional services (applications and adapters)
services
ITENTIAL_SERVICES
csvA whitelist of services (applications/adapters) to initialize on startup of the platform. If no value is given, all services will be initialized

System configuration

Configure system-level behavior.

Property NameTypeDescription
audit_enabled
ITENTIAL_AUDIT_ENABLED
booleanIf true, the platform will track detailed audit events
broker_validation_enabled
ITENTIAL_BROKER_VALIDATION_ENABLED
booleanIf true, the platform will perform strict JSON Schema validation on messages into the brokers and coming back to the broker layer from adapters
platform_shutdown_timeout
ITENTIAL_PLATFORM_SHUTDOWN_TIMEOUT
integerThe amount of time a service should wait before shutting down, in seconds
profile_id
ITENTIAL_PROFILE_ID
stringThe name of the profile document to load from the MongoDB where legacy configuration properties are stored. Not required for installations that are using environment variables or a properties file
server_id
ITENTIAL_SERVER_ID
stringAn identifier for the server instance. This is used to uniquely identify the server in a multi-server environment. If not provided, the server will generate one on startup
server_id_strategy
ITENTIAL_SERVER_ID_STRATEGY
stringStrategy used to generate server ID, if one is not set using the server_id property. Selecting mac:port will generate a server_id using a combination of MAC address and port, while random will generate a random ID on each startup

UI configuration

Configure user interface customization.

Property NameTypeDescription
ui_apple_touch_icon_file
ITENTIAL_UI_APPLE_TOUCH_ICON_FILE
stringPath to the apple touch icon file that will be displayed on iOS devices
ui_favicon_file
ITENTIAL_UI_FAVICON_FILE
stringPath to the favicon file that will be displayed in the browser tab
ui_home_file
ITENTIAL_UI_HOME_FILE
stringPath to the HTML file that will be displayed as the home page for the UI
ui_layout_file
ITENTIAL_UI_LAYOUT_FILE
stringPath to the layout file extended in pug templates
ui_login_file
ITENTIAL_UI_LOGIN_FILE
stringPath to the HTML file that will be displayed as the login page for the UI
ui_profile_file
ITENTIAL_UI_PROFILE_FILE
stringPath to the HTML file that will be displayed as the profile page for the UI

Web server configuration

Configure HTTP/HTTPS server settings.

HTTP settings

Property NameTypeDescription
webserver_http_allowed_optional_verbs
ITENTIAL_WEBSERVER_HTTP_ALLOWED_OPTIONAL_VERBS
csvThe set of allowed HTTP verbs in addition to those defined in the standard HTTP/1.1 protocol
webserver_http_enabled
ITENTIAL_WEBSERVER_HTTP_ENABLED
booleanIf true, allows the webserver to respond to insecure HTTP requests
webserver_http_port
ITENTIAL_WEBSERVER_HTTP_PORT
integerThe port on which the webserver listens for HTTP requests

HTTPS settings

Property NameTypeDescription
webserver_https_cert
ITENTIAL_WEBSERVER_HTTPS_CERT
stringThe path to the certificate file used for HTTPS connections
webserver_https_cert_contents
ITENTIAL_WEBSERVER_HTTPS_CERT_CONTENTS
stringCertificate used for HTTPS connections. This should be a string containing the PEM-encoded certificate
webserver_https_enabled
ITENTIAL_WEBSERVER_HTTPS_ENABLED
booleanIf true, allows the webserver to respond to secure HTTPS requests
webserver_https_key
ITENTIAL_WEBSERVER_HTTPS_KEY
stringThe path to the public key file used for HTTPS connections
webserver_https_key_contents
ITENTIAL_WEBSERVER_HTTPS_KEY_CONTENTS
stringPublic key used for HTTPS connections. This should be a string containing the PEM-encoded key
webserver_https_passphrase
ITENTIAL_WEBSERVER_HTTPS_PASSPHRASE
stringThe passphrase for the private key used to enable TLS sessions
webserver_https_port
ITENTIAL_WEBSERVER_HTTPS_PORT
integerThe port on which the webserver listens for HTTPS requests

Logging

Property NameTypeDescription
webserver_log_directory
ITENTIAL_WEBSERVER_LOG_DIRECTORY
stringThe absolute directory path where webserver log files are written
webserver_log_filename
ITENTIAL_WEBSERVER_LOG_FILENAME
stringThe name of the webserver log file

Server behavior

Property NameTypeDescription
webserver_cache_control_enabled
ITENTIAL_WEBSERVER_CACHE_CONTROL_ENABLED
booleanA toggle to instruct the webserver to include HTTP cache control headers on the response
webserver_response_header_access_control_allow_origin
ITENTIAL_WEBSERVER_RESPONSE_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN
stringThe value of the HTTP Access-Control-Allow-Origin header returned to clients
webserver_timeout
ITENTIAL_WEBSERVER_TIMEOUT
integerTimeout to use for incoming HTTP requests to the platform API, in milliseconds

TLS configuration

Property NameTypeDescription
webserver_https_ciphers
ITENTIAL_WEBSERVER_HTTPS_CIPHERS
stringThe allowed SSL/TLS cipher suite
webserver_https_client_reneg_limit
ITENTIAL_WEBSERVER_HTTPS_CLIENT_RENEG_LIMIT
integerSpecifies the number of renegotiations that are allowed in a single HTTPS connection
webserver_https_client_reneg_window
ITENTIAL_WEBSERVER_HTTPS_CLIENT_RENEG_WINDOW
integerSpecifies the time renegotiation window in seconds for a single HTTPS connection
webserver_https_secure_protocol
ITENTIAL_WEBSERVER_HTTPS_SECURE_PROTOCOL
stringThe set of allowed SSL/TLS protocol versions. Ignored when either tlsMinVersion or tlsMaxVersion is given
webserver_https_tls_max_version
ITENTIAL_WEBSERVER_HTTPS_TLS_MAX_VERSION
stringMaximum permitted TLS version. Overrides webserver_https_secure_protocol
webserver_https_tls_min_version
ITENTIAL_WEBSERVER_HTTPS_TLS_MIN_VERSION
stringMinimum permitted TLS version. Overrides webserver_https_secure_protocol

Worker configuration

Configure workers for task processing.

Property NameTypeDescription
job_worker_enabled
ITENTIAL_JOB_WORKER_ENABLED
booleanIf true, will allow jobs to be started after the server startup process is complete. If false, API calls to start Jobs will return an error until enabled manually via the UI/API
task_worker_enabled
ITENTIAL_TASK_WORKER_ENABLED
booleanIf true, will start working tasks immediately after the server startup process is complete. If false, the task worker must be enabled manually via the UI/API
task_worker_rate_limit
ITENTIAL_TASK_WORKER_RATE_LIMIT
integerThe maximum number of tasks to run per period. The value 0 disables the rate limiter
task_worker_rate_limit_period
ITENTIAL_TASK_WORKER_RATE_LIMIT_PERIOD
integerThe time period in seconds for the task worker rate limit