Allow passing ip type to cloud-sql-connector

Signed-off-by: Tomasz Szuba <tszuba@box.com>
This commit is contained in:
Tomasz Szuba
2025-01-31 12:08:15 +01:00
parent 72f9a9d1ff
commit c7609de702
4 changed files with 67 additions and 1 deletions
+4
View File
@@ -429,6 +429,10 @@ export interface Config {
* The instance connection name for the cloudsql instance, e.g. `project:region:instance`
*/
instance: string;
/**
* The ip address type to use for the connection. Defaults to 'PUBLIC'
*/
ipAddressType?: 'PUBLIC' | 'PRIVATE' | 'PSC';
}
| {
/**