-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
23 lines (16 loc) · 785 Bytes
/
.env.example
File metadata and controls
23 lines (16 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Required: HTTP endpoint for log destination
export LAMBDA_LOG_HTTP_ENDPOINT="https://your-http-instance.com/api/logs"
# Optional: HTTP auth type (basic, bearer, apikey, none)
export LAMBDA_LOG_AUTH_TYPE="basic"
# Optional: Credentials for HTTP authentication
export LAMBDA_LOG_AUTH_CREDENTIALS="your-api-key"
# Optional: Username for HTTP authentication
export LAMBDA_LOG_AUTH_USERNAME="your-username"
# Optional: Custom header name for API key authentication
export LAMBDA_LOG_AUTH_HEADER_NAME="X-API-Key"
# Optional: HTTP timeout in seconds (default: 30)
export LAMBDA_LOG_TIMEOUT_SECONDS="30"
# Required: Service name for grouping in observability tools
export LAMBDA_LOG_SERVICE_NAME="my-service"
# Optional: Test mode (default: false)
export LAMBDA_LOG_TEST_MODE="false"