Files
PulumiConfig/PulumiWebServer/config.schema.json
2023-02-02 22:14:16 +00:00

46 lines
785 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "SerialisedConfig",
"type": "object",
"additionalProperties": false,
"required": [
"name",
"privateKey",
"domain",
"cnames",
"acmeEmail",
"remoteUsername"
],
"properties": {
"name": {
"type": "string"
},
"privateKey": {
"type": "string"
},
"publicKey": {
"type": "string"
},
"domain": {
"type": "string"
},
"cnames": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"subdomains": {
"type": "array",
"items": {
"type": "string"
}
},
"acmeEmail": {
"type": "string"
},
"remoteUsername": {
"type": "string"
}
}
}