Files
genai-toolbox/docs/en/resources/sources/cloud-sql-mssql.md
Yuan Teoh 38d535de34 fix(source/cloud-sql-mssql): remove ip address field (#1822)
## Description

Removing the `ipAddress` field since it is not an input for Cloud SQL
SQL Server source.

Kept the variable in Source's config but removed this variable from
everywhere else in the code. This will PREVENT a breaking change since
the validator won't flag it as an "extra field".

**Will have to update the following as well:**
(1) Cloud docs
https://cloud.google.com/sql/docs/sqlserver/pre-built-tools-with-mcp-toolbox
(2) gemini-cli-extensions
https://github.com/gemini-cli-extensions/cloud-sql-sqlserver

## PR Checklist

> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:

- [x] Make sure you reviewed

[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
- [x] Make sure to open an issue as a

[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose)
  before writing your code! That way we can discuss the change, evaluate
  designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change

🛠️ Fixes #1549
2025-10-30 17:14:19 -07:00

5.0 KiB

title, linkTitle, type, weight, description
title linkTitle type weight description
Cloud SQL for SQL Server Cloud SQL (SQL Server) docs 1 Cloud SQL for SQL Server is a fully-managed database service for SQL Server.

About

Cloud SQL for SQL Server is a managed database service that helps you set up, maintain, manage, and administer your SQL Server databases on Google Cloud.

If you are new to Cloud SQL for SQL Server, you can try creating and connecting to a database by following these instructions.

Available Tools

  • mssql-sql
    Execute pre-defined SQL Server queries with placeholder parameters.

  • mssql-execute-sql
    Run parameterized SQL Server queries in Cloud SQL for SQL Server.

  • mssql-list-tables
    List tables in a Cloud SQL for SQL Server database.

Pre-built Configurations

Requirements

IAM Permissions

By default, this source uses the Cloud SQL Go Connector to authorize and establish mTLS connections to your Cloud SQL instance. The Go connector uses your Application Default Credentials (ADC) to authorize your connection to Cloud SQL.

In addition to setting the ADC for your server, you need to ensure the IAM identity has been given the following IAM roles (or corresponding permissions):

  • roles/cloudsql.client

{{< notice tip >}} If you are connecting from Compute Engine, make sure your VM also has the proper scope to connect using the Cloud SQL Admin API. {{< /notice >}}

Networking

Cloud SQL supports connecting over both from external networks via the internet (public IP), and internal networks (private IP). For more information on choosing between the two options, see the Cloud SQL page Connection overview.

You can configure the ipType parameter in your source configuration to public or private to match your cluster's configuration. Regardless of which you choose, all connections use IAM-based authorization and are encrypted with mTLS.

Database User

Currently, this source only uses standard authentication. You will need to create a SQL Server user to login to the database with.

Example

sources:
    my-cloud-sql-mssql-instance:
     kind: cloud-sql-mssql
     project: my-project
     region: my-region
     instance: my-instance
     database: my_db
     user: ${USER_NAME}
     password: ${PASSWORD}
     # ipType: private

{{< notice tip >}} Use environment variable replacement with the format ${ENV_NAME} instead of hardcoding your secrets into the configuration file. {{< /notice >}}

Reference

field type required description
kind string true Must be "cloud-sql-mssql".
project string true Id of the GCP project that the cluster was created in (e.g. "my-project-id").
region string true Name of the GCP region that the cluster was created in (e.g. "us-central1").
instance string true Name of the Cloud SQL instance within the cluster (e.g. "my-instance").
database string true Name of the Cloud SQL database to connect to (e.g. "my_db").
user string true Name of the SQL Server user to connect as (e.g. "my-pg-user").
password string true Password of the SQL Server user (e.g. "my-password").
ipType string false IP Type of the Cloud SQL instance, must be either public, private, or psc. Default: public.