https://pulumi.com logo
#google-cloud
Title
# google-cloud
m

millions-carpet-42522

06/22/2022, 12:08 PM
my code:
Copy code
const instance = new sql.DatabaseInstance(
      instanceName,
      {
        region: this.gcpConfig.region,
        databaseVersion: 'POSTGRES_14',
        deletionProtection: true,
        settings: {
          tier: 'db-f1-micro',
        },
      },
    );

    const user = new sql.User(
      `${this.serviceName}-user`,
      {
        name: `${this.serviceName}-user`,
        instance: instanceName,
        password: randomString(10),
      },
    );
k

kind-keyboard-17263

06/22/2022, 1:39 PM
I suppose you are executing the pulumi script while authentication via gcloud or are you using a service-account ?
@millions-carpet-42522
Oh, nvm, I have just seen your vpn related message 😉
2 Views