-
Feature Request
-
Resolution: Unresolved
-
Undefined
-
None
-
None
-
None
-
False
-
-
False
🔖 Feature description
Backstage supports this connection type as mentioned here:
https://backstage.io/docs/releases/v1.34.0/#direct-google-cloudsql-postgres-support
Meanwhile, @backstage-community/plugin-rbac-backend doesn't currently support connecting using IAM authentication with Cloud SQL connector as shown here:
adapter = await TypeORMAdapter.newAdapter({
type: 'postgres',
host: databaseConfig?.getString('connection.host'),
port: databaseConfig?.getNumber('connection.port'),
username: databaseConfig?.getString('connection.user'),
password: databaseConfig?.getString('connection.password'),
ssl,
database: dbName,
schema: schema,
poolSize: databaseConfig?.getOptionalNumber('knexConfig.pool.max'),
});
Community plugins issue 4226
Â
Â