@@ -8,7 +8,7 @@ import { ensureCurrentIpInAccessList } from "../../../common/atlas/accessListUti
8
8
import { AtlasArgs , CommonArgs } from "../../args.js" ;
9
9
10
10
export const CreateDBUserArgs = {
11
- projectId : AtlasArgs . projectId ( ) . describe ( "Atlas project ID" ) ,
11
+ projectId : AtlasArgs . projectId ( ) ,
12
12
username : AtlasArgs . username ( ) . describe ( "Username for the new user" ) ,
13
13
// Models will generate overly simplistic passwords like SecurePassword123 or
14
14
// AtlasPassword123, which are easily guessable and exploitable. We're instructing
@@ -26,7 +26,7 @@ export const CreateDBUserArgs = {
26
26
collectionName : CommonArgs . string ( ) . describe ( "Collection name" ) . optional ( ) ,
27
27
} )
28
28
)
29
- . describe ( "Roles for the new user" ) ,
29
+ . describe ( "Roles for the new database user" ) ,
30
30
clusters : z
31
31
. array ( AtlasArgs . clusterName ( ) )
32
32
. describe ( "Clusters to assign the user to, leave empty for access to all clusters" )
@@ -35,7 +35,7 @@ export const CreateDBUserArgs = {
35
35
36
36
export class CreateDBUserTool extends AtlasToolBase {
37
37
public name = "atlas-create-db-user" ;
38
- protected description = "Create an MongoDB Atlas database user" ;
38
+ protected description = "Create a MongoDB Atlas database user" ;
39
39
public operationType : OperationType = "create" ;
40
40
protected argsShape = {
41
41
...CreateDBUserArgs ,
0 commit comments