What problem does it solve?
This Skill addresses the challenge of managing and operating Cloud SQL instances and databases, streamlining database management tasks.
Core Features & Use Cases
- Instance Creation and Management: Create, configure, and manage Cloud SQL instances for MySQL, PostgreSQL, and SQL Server.
- Database Creation and Management: Create, modify, and manage databases within Cloud SQL instances.
- Security and Access Control: Implement security measures such as IAM roles, SSL/TLS certificates, and Auth Proxy configuration.
- Automation and Integration: Automate database management tasks using Terraform for Infrastructure as Code (IaC).
- Use Case: For example, use this Skill to set up a Cloud SQL instance with PostgreSQL and create a database, then connect to it using the Cloud SQL Auth Proxy.
Quick Start
Create a Cloud SQL instance with PostgreSQL by running the following command:
gcloud sql instances create MY_INSTANCE_NAME \
--database-version=POSTGRES_18 \
--cpu=2 \
--memory=7680MiB \
--region=REGION \
--quiet