You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/pages/references/configuration.mdx
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,7 @@ Global configurations are provided through env variables or a YAML file. ConfigM
80
80
|`LOG_MAX_CONCURRENCY`| Maximum number of log writing operations to process concurrently.|`1`| No|
81
81
|`MAX_DESTINATIONS_PER_TENANT`| Maximum number of destinations allowed per tenant/organization.|`20`| No|
82
82
|`MAX_RETRY_LIMIT`| Maximum number of retry attempts for a single event delivery before giving up. Ignored if retry_schedule is provided.|`10`| No|
83
+
|`MQS_AUTO_PROVISION`| Whether Outpost should create and manage message queue infrastructure. Set to false if you manage infrastructure externally (e.g., via Terraform). Defaults to true for backward compatibility.|`nil`| No|
83
84
|`ORGANIZATION_NAME`| Name of the organization, used for display purposes and potentially in user agent strings.|`nil`| No|
84
85
|`OTEL_EXPORTER`| Specifies the OTLP exporter to use for this telemetry type (e.g., 'otlp'). Typically used with environment variables like OTEL_EXPORTER_OTLP_TRACES_ENDPOINT.|`nil`| Conditional|
85
86
|`OTEL_PROTOCOL`| Specifies the OTLP protocol ('grpc' or 'http') for this telemetry type. Typically used with environment variables like OTEL_EXPORTER_OTLP_TRACES_PROTOCOL.|`nil`| Conditional|
@@ -296,6 +297,9 @@ mqs:
296
297
secret_access_key:""
297
298
298
299
300
+
# Whether Outpost should create and manage message queue infrastructure. Set to false if you manage infrastructure externally (e.g., via Terraform). Defaults to true for backward compatibility.
301
+
auto_provision:# <*bool>
302
+
299
303
# Configuration for using Azure Service Bus as the message queue. Only one MQ provider should be configured.