Skip to content

Commit

Permalink
Respect "import" option on pkcs12 certificate setup (#3905)
Browse files Browse the repository at this point in the history
Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored and MarkAckert committed Jul 10, 2024
1 parent a18fd94 commit 3e436a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schemas/zowe-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,22 +177,22 @@
"description": "Keystore directory"
},
"name": {
"type": "string",
"type": [ "string", "null" ],
"description": "Certificate alias name. Note: please use all lower cases as alias.",
"default": "localhost"
},
"password": {
"type": "string",
"type": [ "string", "null" ],
"description": "Keystore password",
"default": "password"
},
"caAlias": {
"type": "string",
"type": [ "string", "null" ],
"description": "Alias name of self-signed certificate authority. Note: please use all lower cases as alias.",
"default": "local_ca"
},
"caPassword": {
"type": "string",
"type": [ "string", "null" ],
"description": "Password of keystore stored self-signed certificate authority.",
"default": "local_ca_password"
},
Expand Down

0 comments on commit 3e436a8

Please sign in to comment.