Configuration Node
Configuration nodes allow the storage of a single value in value in a project. This value can be used like any other node property in a project, functioning like Environment Variables you might use in your local development environment.
You can create project configuration values in the "Resources" panel.
Properties
Type
| Prop | type |
|---|---|
| Type | ConfigType ('secret' | 'string' | 'number' | 'json' | 'boolean') |
| Default | string |
The type of configuration variable.
Value
| Prop | value |
|---|---|
| Type | ({ [K in string]: unknown } | string | boolean) |
| Default | undefined |
The value of the configuration variable.
Fallback Value
| Prop | fallbackValue |
|---|---|
| Type | string |
| Default | undefined |
The fallback value of the secret configuration variable if the secret has not been configured. This fallback value is not considered secure.
Required
| Prop | isRequired |
|---|---|
| Type | boolean |
| Default | false |
Whether a value is required for this configuration variable.
Description
| Prop | description |
|---|---|
| Type | string |
| Default | undefined |
The description of this configuration variable.