Skip to content

Commit 248c6fd

Browse files
committed
Replaces mentions of registration from help text with login
1 parent 6e25063 commit 248c6fd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/command/atlas-setup.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ atlas setup
1212
:depth: 1
1313
:class: singlecol
1414

15-
Register, authenticate, create, and access an Atlas cluster.
15+
Login, authenticate, create, and access an Atlas cluster.
1616

1717
Public Preview: The atlas api sub-command, automatically generated from the MongoDB Atlas Admin API, offers full coverage of the Admin API and is currently in Public Preview (please provide feedback at https://feedback.mongodb.com/forums/930808-atlas-cli).
1818
Admin API capabilities have their own release lifecycle, which you can check via the provided API endpoint documentation link.
1919

2020

2121

22-
This command takes you through registration, login, default profile creation, creating your first free tier cluster and connecting to it using MongoDB Shell.
22+
This command takes you through login, default profile creation, creating your first free tier cluster and connecting to it using MongoDB Shell.
2323

2424
Syntax
2525
------

docs/command/atlas.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Related Commands
8787
* :ref:`atlas-processes` - Manage MongoDB processes for your project.
8888
* :ref:`atlas-projects` - Manage your Atlas projects.
8989
* :ref:`atlas-security` - Manage security configuration for your project.
90-
* :ref:`atlas-setup` - Register, authenticate, create, and access an Atlas cluster.
90+
* :ref:`atlas-setup` - Login, authenticate, create, and access an Atlas cluster.
9191
* :ref:`atlas-streams` - Manage your Atlas Stream Processing deployments.
9292
* :ref:`atlas-teams` - Manage your Atlas teams.
9393
* :ref:`atlas-users` - Manage your Atlas users.

internal/cli/setup/setup_cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,8 +659,8 @@ func Builder() *cobra.Command {
659659
cmd := &cobra.Command{
660660
Use: "setup",
661661
Aliases: []string{"quickstart"},
662-
Short: "Register, authenticate, create, and access an Atlas cluster.",
663-
Long: `This command takes you through registration, login, default profile creation, creating your first free tier cluster and connecting to it using MongoDB Shell.`,
662+
Short: "Login, authenticate, create, and access an Atlas cluster.",
663+
Long: `This command takes you through login, default profile creation, creating your first free tier cluster and connecting to it using MongoDB Shell.`,
664664
Example: ` # Override default cluster settings like name, provider, or database username by using the command options
665665
atlas setup --clusterName Test --provider GCP --username dbuserTest`,
666666
Hidden: false,

0 commit comments

Comments
 (0)