Docs Menu
Docs Home
/ /
MongoDB Command Line Interface
/ / / /

mongocli atlas security customerCerts describe

On this page

  • Syntax
  • Options
  • Output
  • Example

The security customerCerts describe command retrieves the customer-managed Certificate Authority (CA) certificates for a project. You can also retrieve your customer-managed CAs for a project through the Atlas UI or API.

mongocli atlas security customerCerts|certs describe
[ --output|-o <output-format> ]
[ --profile|-P <profile-name> ]
[ --projectId <project-ID> ]

Note

Use -h or --help to view the command-line help for this command.

Option
Type
Description
Required?
--output, -o
string

Command output format. Valid values are:

  • json for output in JSON format

  • go-template for custom output using the Go template

  • go-template-file for custom output specified using Go template file

If omitted, the command returns output in the default format.

no
--profile, -P
string
Name of the profile where the public and private keys for the project are saved. If omitted, uses the default profile. To learn more about creating a profile, see Configure the MongoDB CLI.
no
--projectId
string

Unique identifier of the project. If omitted, uses the project ID in the profile or environment variable.

no

The command prints the following fields in the specified format to the terminal if the command succeeds. If the command prints an error, see Troubleshooting for recommended solutions.

Name
Type
Description
cas
string
PEM-encoded string containing one or more customer-managed CA certificates for database user authentication.

The following mongocli atlas security customerCerts describe command retrieves the customer-managed Certificate Authority (CA) certificates for a project. It uses the default profile to access the Atlas cluster.

mongocli atlas security customerCerts describe --output json --projectId 5e2211c17a3e5a48f5497de3

The command prints the following to the terminal. To learn more about these fields, see Output.

{
"cas": "-----BEGIN CERTIFICATE-----\nMIIEljCCAn4CCQDIOFwZ41mcVDANBgkqhkiG9w0BAQsFADANMQswCQYDVQQDDAJD...n9fAKZTI24VvEFW5dA21Ha3+JYli2JCqJV3s=\n-----END CERTIFICATE-----\n"
}

Back

Save a Customer-Managed X.509 Configuration