rcloadenv
is a tool for loading configuration from the Runtime Config
API.
The language-specific implementations all load configurations from the Runtime Config API. Choose the one that best fits your development environment.
go get -u github.com/GoogleCloudPlatform/rcloadenv
pip install rcloadenv
See instructions here
First, create a configuration using the Google Cloud SDK.
gcloud beta runtime-config configs create my-config
Then set the variables you wish to load. Variable names will be transformed from lowercase to uppercase, separated by underscores.
gcloud beta runtime-config configs variables set \
my-variable-name my-value \
--is-text --config-name my-config
To specify the project, set the GOOGLE_CLOUD_PROJECT
environment variable.
export GOOGLE_CLOUD_PROJECT=my-project-id
Use the rcloadenv
command to launch your process.
rcloadenv my-config -- bash -c 'echo $MY_VARIABLE_NAME'
- See CONTRIBUTING.md
- See LICENSE