run prettier

Signed-off-by: Luka Siric <siric.luka@gmail.com>
This commit is contained in:
Luka Siric
2022-08-31 13:04:23 +02:00
parent 6ec5064c94
commit c55bdf2ad9
+7 -4
View File
@@ -256,15 +256,18 @@
"certificate": {
"type": "object",
"description": "Parent object containing certificate and the private key",
"required": ["key", "cert"],
"properties" : {
"required": [
"key",
"cert"
],
"properties": {
"key": {
"type" : "string",
"type": "string",
"visibility": "secret",
"description": "Https Certificate private key. Use $file to load in a file"
},
"cert": {
"type" : "string",
"type": "string",
"visibility": "secret",
"description": "Https Certificate. Use $file to load in a file"
}