Value Configuration Files
On this page
Note
This page describes a legacy configuration file format. You should
only use this information if you're using the deprecated
realm-cli
.
Any configuration files you pull with App Services CLI or export from the UI use the latest configuration version. For detailed information on the current configuration file format, see App Configuration.
You can define static values in the /values
directory.
Each value is defined in its own JSON file with the same name as the value.
app/ └── values/ └── <value name>.json
Configuration
{ "id": "<Value ID>", "name": "<Value Name>", "from_secret": <boolean>, "value": <Stored JSON Value|Secret Name> }
Field | Description |
---|---|
id String | A string that uniquely identifies the value. Atlas App Services automatically
generates a unique ID for a value when you create it. |
name String | A unique name for the value. This name is how you refer to
the value in functions and rules. |
from_secret Boolean | |
value String, Array, or Object | The stored data that App Services exposes when the value is referenced. If If |