mongocli atlas privateendpoint create
The privateendpoint create
command creates one private endpoint
connection for a given Atlas project.
Syntax
mongocli atlas privateendpoint(s)|privateEndpoint(s) create --region <cloud-provider-region> [ --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.
Options
Option | Type | Description | Required? |
---|---|---|---|
--region | string | Cloud provider region in which you want to create the private endpoint connection. NoteAtlas supports private endpoint connections only for AWS. See the Atlas documentation for limitations on the number of private endpoints you can create in different regions. Accepted values are:
| yes |
--output , -o | string | Command output format. Valid values are:
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 |
Output
If the command succeeds, it returns the following output in the default format. If the command returns errors, see Troubleshooting for recommended solutions.
Private endpoint '<private-endpoint-id>' created.
The default output is a subset of the fields returned by this command. For the complete list of JSON fields returned by the command, see the Public API reference for your MongoDB service:
Example
The following command creates one private endpoint connection for a project using the default profile, which contains credentials and the project ID. The output is returned in the default format.
mongocli atlas privateendpoint create --region us-east-1 5f4fc81c1f03a835c2728ff7
The previous command prints the following to the terminal.
Private endpoint '5f4fc829a2b47835a58c6d04' created.
The following command creates one private endpoint connection for a project using the default profile, which contains credentials and the project ID. The output is returned in JSON format.
mongocli atlas privateendpoint create --region us-east-1 5f4fc81c1f03a835c2728ff7 --output json
The previous command prints the following to the terminal in JSON format.
{ "id": "5f4fc81c1f03a835c2728ff7", "status": "INITIATING" }