posh-providers/gravitational/teleport/config.schema.json
2025-09-22 10:25:50 +02:00

61 lines
1.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/foomo/posh-providers/gravitational/teleport",
"$ref": "#/$defs/Config",
"$defs": {
"Config": {
"properties": {
"path": {
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"hostname": {
"type": "string"
},
"kubernetes": {
"$ref": "#/$defs/Kubernetes"
},
"apps": {
"additionalProperties": {
"items": {
"type": "string"
},
"type": "array"
},
"type": "object"
},
"database": {
"$ref": "#/$defs/Database"
}
},
"additionalProperties": false,
"type": "object"
},
"Database": {
"properties": {
"user": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
},
"Kubernetes": {
"properties": {
"aliases": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
}
}
}