Skip to main content

Config for eapts

Jobs that use the eapts adaptor may require authentication. A "credential" for the eapts 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.

{
"baseUrl": "https://example.com",
"apiToken": "sk_test_53iburgn5yb3u4nfufg477365gbvrnv348r475gf4bf485845gbrf"
}

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 base URL (http://www.example.com)",
"format": "uri",
"minLength": 1,
"examples": [
"https://example.com"
]
},
"apiToken": {
"title": "Api Token",
"type": "string",
"description": "The API token for authenticating requests to eAPTS",
"writeOnly": true,
"examples": [
"sk_test_53iburgn5yb3u4nfufg477365gbvrnv348r475gf4bf485845gbrf"
]
}
},
"type": "object",
"additionalProperties": true,
"required": [
"baseUrl",
"apiToken"
]
}