Skip to content

Commit

Permalink
Allow key/certificate to be null for pem (#3874)
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored Jul 2, 2024
1 parent 2c59c39 commit b975c52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions schemas/zowe-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -800,11 +800,11 @@
"description": "Certificate in PEM format.",
"properties": {
"key": {
"type": "string",
"type": [ "string", "null" ],
"description": "Path to the certificate private key stored in PEM format."
},
"certificate": {
"type": "string",
"type": [ "string", "null" ],
"description": "Path to the certificate stored in PEM format."
},
"certificateAuthorities": {
Expand Down

0 comments on commit b975c52

Please sign in to comment.