Skip to content

Commit

Permalink
Merge pull request #289 from zowe/1000TurquoisePogs-patch-9
Browse files Browse the repository at this point in the history
Add definition for minTls and maxTls
  • Loading branch information
1000TurquoisePogs authored Nov 22, 2023
2 parents e6bd988 + 954a952 commit 206b452
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions schemas/app-server-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,18 @@
"deprecated": true,
"description": "Passes through the secureProtocol attribute to TLS calls of nodeJS, as defined within https://nodejs.org/api/tls.html#tlscreatesecurecontextoptions"
},
"maxTls": {
"type": "string",
"enum": ["TLSv1.2", "TLSv1.3"],
"default": "TLSv1.3",
"description": "Maximum TLS version allowed for network connections."
},
"minTls": {
"type": "string",
"enum": ["TLSv1.2", "TLSv1.3"],
"default": "TLSv1.2",
"description": "Minimum TLS version allowed for network connections, and less than or equal to maxTls."
},
"ciphers": {
"oneOf": [
{ "$ref": "#/$defs/nodejsDefaultCiphers" },
Expand Down

0 comments on commit 206b452

Please sign in to comment.