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
If an env var, say "SOME_API", is defined as a JSON object string in both config and secrets, currently the value from secrets will overwrite the value from config (when loading secrets). Instead, we define:
$SOME_API in config, specifying:
the URL to the API endpoint
any other non-secret info or config about that API
$SOME_API_SECRETS in secrets: specifying:
username/password/API key
It would be helpful to have ops merge these values for us, iff:
$SOME_API is set to a decodable JSON object in both files
$SOME_API decodes as an Object
possibly an option, like "options.config.merge_json_objects" is set to true
The text was updated successfully, but these errors were encountered:
If an env var, say "SOME_API", is defined as a JSON object string in both config and secrets, currently the value from secrets will overwrite the value from config (when loading secrets). Instead, we define:
It would be helpful to have ops merge these values for us, iff:
true
The text was updated successfully, but these errors were encountered: