AWS Access Key ID (optional; omit to use the AWS SDK default credential chain, e.g. an IAM role)
AWS_SQS_SECRET_ACCESS_KEY
AWS Secret Access Key (optional; omit to use the AWS SDK default credential chain, e.g. an IAM role)
AWS_SQS_REGION
AWS Region
Whichever way you authenticate, the principal needs these actions on the Outpost queues: sqs:GetQueueUrl, sqs:SendMessage, sqs:ReceiveMessage, sqs:DeleteMessage, and sqs:ChangeMessageVisibility (the batch API variants are covered by the same actions). With auto-provisioning enabled (the default, MQS_AUTO_PROVISION=true), it also needs sqs:CreateQueue and sqs:GetQueueAttributes. If you manage the queues yourself, the first list is sufficient.
GCP Pub/Sub:
Variable
Description
GCP_PUBSUB_PROJECT
GCP Project ID
GCP_PUBSUB_SERVICE_ACCOUNT_CREDENTIALS
Service account JSON string or file path
Azure Service Bus:
Variable
Description
AZURE_SERVICEBUS_NAMESPACE
Azure Service Bus namespace
AZURE_SERVICEBUS_TENANT_ID
Azure Active Directory tenant ID
AZURE_SERVICEBUS_CLIENT_ID
Service principal client ID
AZURE_SERVICEBUS_CLIENT_SECRET
Service principal client secret
Log Storage
Choose one for event log persistence:
Variable
Description
POSTGRES_URL
PostgreSQL connection URL
CLICKHOUSE_ADDR
ClickHouse address (e.g., localhost:9000)
Delivery
Variable
Default
Description
DELIVERY_MAX_CONCURRENCY
1
Max concurrent delivery attempts
DELIVERY_TIMEOUT_SECONDS
5
HTTP request timeout for webhook delivery
MAX_RETRY_LIMIT
10
Max retry attempts before giving up
RETRY_INTERVAL_SECONDS
30
Base interval for exponential backoff retries
RETRY_SCHEDULE
—
Comma-separated retry delays in seconds (overrides interval/limit)
Topics
Variable
Default
Description
TOPICS
—
Comma-separated list of topics your instance supports
TOPICS_ALLOW_WILDCARDS
false
Allow * inside destination topic subscriptions, such as user.*
Portal
Variable
Default
Description
PORTAL_REFERER_URL
—
Required. URL to redirect users to when JWT expires
PORTAL_REFRESH_URL
—
URL in your app to silently re-authenticate and generate a new JWT
PORTAL_ORGANIZATION_NAME
—
Organization name shown in the portal header
PORTAL_ACCENT_COLOR
—
Primary brand color (hex code, e.g., #6122E7)
PORTAL_LOGO
—
URL for the light-mode portal logo
PORTAL_LOGO_DARK
—
URL for the dark-mode portal logo
PORTAL_FAVICON_URL
—
URL for the portal favicon
PORTAL_FORCE_THEME
—
Force portal theme: light or dark
PORTAL_DISABLE_OUTPOST_BRANDING
false
Remove the "Powered by Outpost" footer
PORTAL_ENABLE_DESTINATION_FILTER
false
Show filter configuration UI per destination
PORTAL_ENABLE_WEBHOOK_CUSTOM_HEADERS
false
Allow tenants to set custom HTTP headers on webhook destinations
Alerts
Variable
Default
Description
ALERT_CONSECUTIVE_FAILURE_COUNT
100
Consecutive delivery failures before alerting on a destination (and disabling it when ALERT_AUTO_DISABLE_DESTINATION is true). Leave unset for the default of 100; set to an empty string to disable consecutive-failure alerting entirely.
ALERT_AUTO_DISABLE_DESTINATION
false
Auto-disable a destination once ALERT_CONSECUTIVE_FAILURE_COUNT is reached. Has no effect when consecutive-failure alerting is disabled.
ALERT_EXHAUSTED_RETRIES_WINDOW_SECONDS
3600
Suppression window (seconds) for exhausted_retries alerts: the first exhaustion per destination alerts and subsequent ones within the window are suppressed (0 = no suppression, alert on every exhaustion). Leave unset for the default of 3600; set to an empty string to disable exhausted_retries alerting entirely.
Destinations
Variable
Default
Description
MAX_DESTINATIONS_PER_TENANT
20
Maximum destinations each tenant may create. Set as low as is practical for your product to limit abuse and load; lowering this value later does not remove destinations that already exist.
DESTINATIONS_METADATA_PATH
—
Optional. Filesystem path to a directory of custom destination metadata (per-type metadata.json and instructions.md). Non-core fields such as label, description, icon, and instructions can be customized; config_fields and credential_fields cannot be overridden.
Webhook Behavior
Variable
Default
Description
DESTINATIONS_WEBHOOK_MODE
default
Set to standard for Standard Webhooks compliance
DESTINATIONS_WEBHOOK_HEADER_PREFIX
x-outpost- / webhook-
Prefix for system webhook headers (event id, topic, timestamp, signature). Unless overridden, defaults to x-outpost- when DESTINATIONS_WEBHOOK_MODE is default and webhook- when standard.
DESTINATIONS_WEBHOOK_EVENT_ID_HEADER_NAME
—
Complete name of the event ID header. Unset uses the default <prefix>event-id; an explicit value pins that exact name; an empty string disables the header. Only applies to default mode.
DESTINATIONS_WEBHOOK_SIGNATURE_HEADER_NAME
—
Complete name of the signature header. Unset uses the default <prefix>signature; an explicit value pins that exact name; an empty string disables the header. Only applies to default mode.
DESTINATIONS_WEBHOOK_TIMESTAMP_HEADER_NAME
—
Complete name of the timestamp header. Unset uses the default <prefix>timestamp; an explicit value pins that exact name; an empty string disables the header. Only applies to default mode.
DESTINATIONS_WEBHOOK_TOPIC_HEADER_NAME
—
Complete name of the topic header. Unset uses the default <prefix>topic; an explicit value pins that exact name; an empty string disables the header. Only applies to default mode.
DESTINATIONS_WEBHOOK_SIGNATURE_ALGORITHM
hmac-sha256
Signature algorithm
DESTINATIONS_WEBHOOK_SIGNATURE_ENCODING
hex
Encoding: hex or base64
DESTINATIONS_WEBHOOK_MAX_RESPONSE_BODY_BYTES
131072 (128 KiB)
Max bytes of a destination response body stored on the delivery attempt. Larger responses are replaced with a placeholder so the attempt log stays under the event queue's per-message size limit. Set to 0 to disable the cap.