mirror of
https://github.com/clearml/clearml-docs
synced 2025-01-31 06:27:22 +00:00
Correct environment variable access examples
This commit is contained in:
parent
15d0d5f7c6
commit
d019fe8f55
@ -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}
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -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}
|
||||
},
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user