Complete the code to create a new cluster with the specified name.
atlas clusters create [1] --region US_EAST_1The create command requires the cluster name as the first argument. Here, myCluster is the name of the new cluster.
Complete the code to specify the cluster tier when creating a cluster.
atlas clusters create myCluster --tier [1]The --tier option sets the cluster size. M10 is a common starting tier for production clusters.
Fix the error in the command to create a cluster with the correct region option.
atlas clusters create myCluster --region [1]The correct region format uses underscores, like US_EAST_1. Other formats cause errors.
Fill both blanks to create a cluster with the specified name and enable backup.
atlas clusters create [1] --pitEnabled [2]
The cluster name is myBackupCluster and --pitEnabled true enables backups.
Fill all three blanks to create a cluster with a name, tier, and region.
atlas clusters create [1] --tier [2] --region [3]
The cluster is named prodCluster, uses tier M10, and region US_WEST_2.