Skip to content

Commit

Permalink
Merge branch 'v2.x/staging' into clarification-example-zowe
Browse files Browse the repository at this point in the history
  • Loading branch information
1000TurquoisePogs authored Nov 28, 2023
2 parents a9107e3 + dca2a7e commit 2333cac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions schemas/zowe-yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@
"properties": {
"ciphers": {
"type": "array",
"description": "Acceptable TLS cipher suites for network connections.",
"description": "Acceptable TLS cipher suites for network connections, in IANA format.",
"items": {
"type": "string"
}
Expand All @@ -874,15 +874,15 @@
},
"maxTls": {
"type": "string",
"enum": ["TLSv1.0", "TLSv1.1", "TLSv1.2", "TLSv1.3"],
"enum": ["TLSv1.2", "TLSv1.3"],
"default": "TLSv1.3",
"description": "Maximum TLS version allowed for network connections."
},
"minTls": {
"type": "string",
"enum": ["TLSv1.0", "TLSv1.1", "TLSv1.2", "TLSv1.3"],
"default": "TLSv1.3",
"description": "Minimum TLS version allowed for network connections, and less than network.maxTls."
"enum": ["TLSv1.2", "TLSv1.3"],
"default": "TLSv1.2",
"description": "Minimum TLS version allowed for network connections, and less than or equal to network.maxTls."
}
}
},
Expand Down

0 comments on commit 2333cac

Please sign in to comment.