Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,18 @@ connection.close();
connector.close();
```

If your Cloud SQL for SQL Server instance requires SSL connections, configure
the `tedious` driver to use encryption in addition to the connector-managed
secure connection:

```js
options: {
...clientOpts,
encrypt: true,
trustServerCertificate: true,
}
```

### Using a Local Proxy Tunnel (Unix domain socket)

Another possible way to use the Cloud SQL Node.js Connector is by creating a
Expand Down