Environment Variable Types
The following table describes the allowed values for an environment variable based on it’s type. If not stated otherwise, no quotes around values are needed.
| Type | Description & Examples | ||||
|---|---|---|---|---|---|
bool  | 
A boolean value defined either by   | 
||||
string  | 
In general, only one allowed value. 
 
 
  | 
||||
[]string  | 
An array with multiple values allowed. The list is comma separated ONLY, no blanks or brackets of any kind: 
  | 
||||
int  | 
An integer value with no other characters than numbers.  | 
||||
uint  | 
An unsigned integer value with no other characters than numbers.  | 
||||
int64  | 
A 64-bit integer value with no other characters than numbers.  | 
||||
Duration  | 
The duration can be set as a number followed by a time unit identifier like ms, s, m or h.
Note that no other identifiers are allowed. Durations can be combined by multiple numbers and their identifiers.  |