-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwml.public.conf
26 lines (22 loc) · 1023 Bytes
/
wml.public.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
service{
iam{
host = "https://iam.cloud.ibm.com" // Should provide the hardcoded url to the IAM host.
host = ${?IAM_HOST} // or use an environment variable.
url = "/identity/token" // should stay as is
url = ${?IAM_URL}
}
wml{
host = "https://us-south.ml.cloud.ibm.com" // Provide the WML cluster you use via hard coded string
host = ${?WML_HOST} // or use an environment variable
api_key = "your api key" // Put your WML api key here
api_key = ${?WML_API_KEY} // or use an environment variable
space_id = "your space id" // You can solve a model only through a space in WML.
space_id = ${?WML_SPACE_ID} // or use an environment variable
version = "2021-06-01" // Mandatory WML field, must be provided. Any value is accepted so far.
version = ${?WML_VERSION} // or use an environment variable
}
platform {
host = "api.dataplatform.cloud.ibm.com"
host = ${?PLATFORM_HOST}
}
}