Correct environment variable access examples

This commit is contained in:
alnoam 2021-12-30 17:30:09 +02:00
parent 15d0d5f7c6
commit d019fe8f55
2 changed files with 7 additions and 7 deletions

View File

@ -44,7 +44,7 @@ For example:
# # Default project and credentials file
# # Will be used when no bucket configuration is found
project: "clearml"
credentials_json: "${GOOGLE_APPLICATION_CREDENTIALS}"
credentials_json: ${GOOGLE_APPLICATION_CREDENTIALS}
}
```

View File

@ -59,9 +59,9 @@ For example:
aws {
s3 {
# default, used for any bucket not specified below
key: "${AWS_ACCESS_KEY_ID}"
secret: "${AWS_SECRET_ACCESS_KEY}"
region: "${AWS_DEFAULT_REGION}"
key: ${AWS_ACCESS_KEY_ID}
secret: ${AWS_SECRET_ACCESS_KEY}
region: ${AWS_DEFAULT_REGION}
}
}
```
@ -116,8 +116,8 @@ For example:
azure.storage {
containers: [
{
account_name: "${AZURE_STORAGE_ACCOUNT}"
account_key: "${AZURE_STORAGE_KEY}"
account_name: ${AZURE_STORAGE_ACCOUNT}
account_key: ${AZURE_STORAGE_KEY}
# container_name:
}
]
@ -156,7 +156,7 @@ google.storage {
bucket: ""
subdir: "path/in/bucket" # Not required
project: ""
credentials_json: "${GOOGLE_APPLICATION_CREDENTIALS}"
credentials_json: ${GOOGLE_APPLICATION_CREDENTIALS}
},
]
}