Config for siuben-rd
Jobs that use the siuben-rd adaptor may require authentication. A
"credential" for the siuben-rd adaptor will follow the schema below. When
using the CLI, you can set up your own state.configuration by using the
sample below.
Sample Configuration
Paste this into the configuration key of your state.json file and
modify the values to run jobs locally.
{
"password": "@some(!)Str0ngp4ss0w0rd",
"username": "test",
"baseUrl": "https://siuben-endpoint.com"
}
Full Schema
The full configuration schema describes each attribute of the credential and notes those that are required.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"baseUrl": {
"title": "Base URL",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"description": "The SIUBEN base URL",
"format": "uri",
"minLength": 1,
"examples": [
"https://siuben-endpoint.com"
]
},
"username": {
"title": "Username",
"type": "string",
"description": "Username",
"examples": [
"test"
]
},
"password": {
"title": "Password",
"type": "string",
"description": "Password",
"writeOnly": true,
"examples": [
"@some(!)Str0ngp4ss0w0rd"
]
}
},
"type": "object",
"additionalProperties": true,
"required": [
"password",
"username",
"baseUrl"
]
}