diff --git a/schemas/zowe-yaml-schema.json b/schemas/zowe-yaml-schema.json index 60a2f83374..bd4d2f458d 100644 --- a/schemas/zowe-yaml-schema.json +++ b/schemas/zowe-yaml-schema.json @@ -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" } @@ -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." } } },