Complete the code to specify the database version when creating a Cloud SQL instance.
gcloud sql instances create my-instance --database-version=[1] --tier=db-f1-micro --region=us-central1The --database-version flag sets the database engine version. Here, MYSQL_8_0 is a valid Cloud SQL version.
Complete the command to specify the machine tier for the Cloud SQL instance.
gcloud sql instances create my-instance --database-version=MYSQL_8_0 --tier=[1] --region=us-central1The --tier flag sets the machine type. db-f1-micro is a small, cost-effective tier for testing.
Fix the error in the command to create a Cloud SQL instance with a specified region.
gcloud sql instances create my-instance --database-version=MYSQL_8_0 --tier=db-f1-micro --region=[1]The --region flag requires a region name, not a zone. us-central1 is a valid region.
Fill both blanks to create a Cloud SQL instance with a specific database version and tier.
gcloud sql instances create my-instance --database-version=[1] --tier=[2] --region=us-central1
The --database-version is set to MYSQL_5_7 and the --tier is set to db-f1-micro for a small MySQL instance.
Fill all three blanks to create a Cloud SQL instance with a database version, tier, and region.
gcloud sql instances create my-instance --database-version=[1] --tier=[2] --region=[3]
The command creates a MySQL 8.0 instance with a custom machine type in the us-east1 region.