mirror of
https://github.com/clearml/clearml-docs
synced 2025-03-16 02:18:49 +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
|
# # Default project and credentials file
|
||||||
# # Will be used when no bucket configuration is found
|
# # Will be used when no bucket configuration is found
|
||||||
project: "clearml"
|
project: "clearml"
|
||||||
credentials_json: "${GOOGLE_APPLICATION_CREDENTIALS}"
|
credentials_json: ${GOOGLE_APPLICATION_CREDENTIALS}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -59,9 +59,9 @@ For example:
|
|||||||
aws {
|
aws {
|
||||||
s3 {
|
s3 {
|
||||||
# default, used for any bucket not specified below
|
# default, used for any bucket not specified below
|
||||||
key: "${AWS_ACCESS_KEY_ID}"
|
key: ${AWS_ACCESS_KEY_ID}
|
||||||
secret: "${AWS_SECRET_ACCESS_KEY}"
|
secret: ${AWS_SECRET_ACCESS_KEY}
|
||||||
region: "${AWS_DEFAULT_REGION}"
|
region: ${AWS_DEFAULT_REGION}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
@ -116,8 +116,8 @@ For example:
|
|||||||
azure.storage {
|
azure.storage {
|
||||||
containers: [
|
containers: [
|
||||||
{
|
{
|
||||||
account_name: "${AZURE_STORAGE_ACCOUNT}"
|
account_name: ${AZURE_STORAGE_ACCOUNT}
|
||||||
account_key: "${AZURE_STORAGE_KEY}"
|
account_key: ${AZURE_STORAGE_KEY}
|
||||||
# container_name:
|
# container_name:
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@ -156,7 +156,7 @@ google.storage {
|
|||||||
bucket: ""
|
bucket: ""
|
||||||
subdir: "path/in/bucket" # Not required
|
subdir: "path/in/bucket" # Not required
|
||||||
project: ""
|
project: ""
|
||||||
credentials_json: "${GOOGLE_APPLICATION_CREDENTIALS}"
|
credentials_json: ${GOOGLE_APPLICATION_CREDENTIALS}
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user