elegant-shampoo-65690
12/17/2019, 3:15 PM└─ pulumi:providers:aiven default_1_1_0 1 error
Diagnostics:
pulumi:providers:aiven (default_1_1_0):
error: could not read plugin [/.pulumi/plugins/resource-aiven-v1.1.0/pulumi-resource-aiven] stdout: EOF
pulumi:pulumi:Stack (gcloud-dev):
panic: Failed to read service_user_config_schema.json: stat templates/service_user_config_schema.json: no such file or directory
goroutine 1 [running]:
<http://github.com/aiven/terraform-provider-aiven/aiven.readUserConfigJSONSchema(0x208fafa|github.com/aiven/terraform-provider-aiven/aiven.readUserConfigJSONSchema(0x208fafa>, 0x1f, 0x205720d)
/home/travis/gopath/pkg/mod/github.com/pulumi/terraform-provider-aiven@v1.0.18-0.20191112055150-1b033b27c5e8/aiven/user_config.go:17 +0x313
<http://github.com/aiven/terraform-provider-aiven/aiven.GetUserConfigSchema(0x205720d|github.com/aiven/terraform-provider-aiven/aiven.GetUserConfigSchema(0x205720d>, 0x7, 0x205bbc4)
/home/travis/gopath/pkg/mod/github.com/pulumi/terraform-provider-aiven@v1.0.18-0.20191112055150-1b033b27c5e8/aiven/user_config.go:41 +0x1a0
<http://github.com/aiven/terraform-provider-aiven/aiven.init()|github.com/aiven/terraform-provider-aiven/aiven.init()>
/home/travis/gopath/pkg/mod/github.com/pulumi/terraform-provider-aiven@v1.0.18-0.20191112055150-1b033b27c5e8/aiven/resource_service.go:139 +0x318c
import * as pulumi from '@pulumi/pulumi';
import * as aiven from '@pulumi/aiven';
import * as random from '@pulumi/random';
interface Postgres {
plan: string;
cloudName: string;
}
const config = new pulumi.Config('aiven');
const postgresConfig = config.requireObject<Postgres>('postgres');
export const service = new aiven.Service('postgres', {
project: 'ware2go',
cloudName: postgresConfig.cloudName,
plan: postgresConfig.plan,
`serviceName: ${pulumi.getStack()}-postgres
,`
serviceType: 'postgres',
pgUserConfig: {
adminUsername: 'master',
adminPassword: new random.RandomPassword('postgresAdminPassword', {
length: 20,
special: true,
overrideSpecial: '/@',
}).result,
},
});
white-balloon-205
12/17/2019, 3:18 PMbroad-dog-22463
12/17/2019, 3:21 PMelegant-shampoo-65690
12/17/2019, 3:21 PMbroad-dog-22463
12/17/2019, 3:22 PMelegant-shampoo-65690
12/17/2019, 3:25 PMbroad-dog-22463
12/17/2019, 4:29 PMhelpful-bear-175
12/17/2019, 5:27 PMbroad-dog-22463
12/20/2019, 5:06 PMelegant-shampoo-65690
12/20/2019, 7:08 PM