When loading configurations from JSON or YAML files, it should be possible to reference environment variables and insert their current values, for example
{
"slice_storage_options": {
"key": "${CREODIAS_S3_KEY}",
"secret": "${CREODIAS_S3_SECRET}"
}
}
Or using YAML
slice_storage_options:
key: ${CREODIAS_S3_KEY}
secret: ${CREODIAS_S3_SECRET}