Skip to content

Commit 3d30d9d

Browse files
authored
chore(cli-repl): add --tlsFIPSMode to help text (#1317)
1 parent 8e359be commit 3d30d9d

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ variable. For detailed instructions for each of our supported platforms, please
6161
--tlsCRLFile [arg] Specifies the .pem file that contains the Certificate Revocation List
6262
--tlsDisabledProtocols [arg] Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]
6363
--tlsUseSystemCA Load the operating system trusted certificate list
64+
--tlsFIPSMode Enable the system TLS library's FIPS mode
6465

6566
API version options:
6667

packages/cli-repl/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ CLI interface for [MongoDB Shell][mongosh], an extension to Node.js REPL with Mo
4242
--tlsCertificateSelector [arg] TLS Certificate in system store (Windows and macOS only)
4343
--tlsDisabledProtocols [arg] Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]
4444
--tlsUseSystemCA Load the operating system trusted certificate list
45+
--tlsFIPSMode Enable the system TLS library's FIPS mode
4546

4647
API version options:
4748

packages/cli-repl/src/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export const USAGE = `
5454
--tlsCRLFile [arg] ${i18n.__('cli-repl.args.tlsCRLFile')}
5555
--tlsDisabledProtocols [arg] ${i18n.__('cli-repl.args.tlsDisabledProtocols')}
5656
--tlsUseSystemCA ${i18n.__('cli-repl.args.tlsUseSystemCA')}
57+
--tlsFIPSMode ${i18n.__('cli-repl.args.tlsFIPSMode')}
5758
5859
${clr(i18n.__('cli-repl.args.apiVersionOptions'), 'mongosh:section-header')}
5960

packages/i18n/src/locales/en_US.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const translations: Catalog = {
4545
tlsCRLFile: 'Specifies the .pem file that contains the Certificate Revocation List',
4646
tlsDisabledProtocols: 'Comma separated list of TLS protocols to disable [TLS1_0,TLS1_1,TLS1_2]',
4747
tlsUseSystemCA: 'Load the operating system trusted certificate list',
48+
tlsFIPSMode: 'Enable the system TLS library\'s FIPS mode',
4849
apiVersionOptions: 'API version options:',
4950
apiVersion: 'Specifies the API version to connect with',
5051
apiStrict: 'Use strict API version mode',

0 commit comments

Comments
 (0)