@itentialopensource/adapter-azure_aks
Version:
This adapter integrates with system described as: Azure AKS.
64 lines • 1.48 kB
JSON
{
"$id": ".system-schemaTokenReq.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "getToken",
"enum": [
"getToken"
],
"external_name": "ph_request_type"
},
"client_id": {
"type": "string",
"description": "client id for azure",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "client_id"
},
"grant_type": {
"type": "string",
"description": "grant type for azure",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "grant_type"
},
"scope": {
"type": "string",
"default":"https://management.azure.com/.default",
"description": "the scope of the application endpoint",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "scope"
},
"client_secret": {
"type": "string",
"description": "client secret",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "client_secret"
}
},
"definitions": {}
}