diff --git a/README.md b/README.md index bbeae4e712..34fe002f06 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ variable. For detailed instructions for each of our supported platforms, please --tlsAllowInvalidHostnames Allow connections to servers with non-matching hostnames --tlsAllowInvalidCertificates Allow connections to servers with invalid certificates --tlsCertificateSelector [arg] TLS Certificate in system store (Windows and macOS only) + --tlsCRLFile [arg] Specifies the .pem file that contains the Certificate Revocation List --tlsDisabledProtocols [arg] Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2] API version options: diff --git a/packages/cli-repl/src/constants.ts b/packages/cli-repl/src/constants.ts index cf26b8adb4..72bdd1b395 100644 --- a/packages/cli-repl/src/constants.ts +++ b/packages/cli-repl/src/constants.ts @@ -48,6 +48,7 @@ export const USAGE = ` --tlsAllowInvalidHostnames ${i18n.__('cli-repl.args.tlsAllowInvalidHostnames')} --tlsAllowInvalidCertificates ${i18n.__('cli-repl.args.tlsAllowInvalidCertificates')} --tlsCertificateSelector [arg] ${i18n.__('cli-repl.args.tlsCertificateSelector')} + --tlsCRLFile [arg] ${i18n.__('cli-repl.args.tlsCRLFile')} --tlsDisabledProtocols [arg] ${i18n.__('cli-repl.args.tlsDisabledProtocols')} ${clr(i18n.__('cli-repl.args.apiVersionOptions'), ['bold', 'yellow'])} diff --git a/packages/i18n/src/locales/en_US.ts b/packages/i18n/src/locales/en_US.ts index bcc12c54f7..bb26a9763d 100644 --- a/packages/i18n/src/locales/en_US.ts +++ b/packages/i18n/src/locales/en_US.ts @@ -40,6 +40,7 @@ const translations: Catalog = { tlsAllowInvalidHostnames: 'Allow connections to servers with non-matching hostnames', tlsAllowInvalidCertificates: 'Allow connections to servers with invalid certificates', tlsCertificateSelector: 'TLS Certificate in system store (Windows and macOS only)', + tlsCRLFile: 'Specifies the .pem file that contains the Certificate Revocation List', tlsDisabledProtocols: 'Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]', apiVersionOptions: 'API version options:', apiVersion: 'Specifies the API version to connect with',