fierce-memory-34976
09/28/2020, 12:29 PMquick-finland-93793
09/28/2020, 12:53 PMminiature-leather-70472
09/28/2020, 1:32 PMminiature-leather-70472
09/28/2020, 1:54 PMrich-exabyte-94739
09/28/2020, 4:11 PMcluster, err := ecs.NewCluster(ctx, "test-cluster", &ecs.ClusterArgs{
CapacityProviders: pulumi.StringArray{pulumi.String("FARGATE")},
Name: pulumi.String("test-cluster"),
Settings: nil,
Tags: nil,
})
Where would the previously defined VPC be specified in the above?rich-exabyte-94739
09/28/2020, 7:38 PMvpc, err := ec2.NewVpc(ctx, vpcName, vpcArgs)
if err != nil {
fmt.Println(err.Error())
return err
}
ctx.Export("VPC-ID", vpc.ID())
In the above example, vpc.ID()
is an IDOutput
parameter. How do I convert it to an actual string so I can use the actual VPC ID in other Pulumi calls (i.e. ec2.GetSubnetIds
)?clever-plumber-29709
09/28/2020, 9:52 PM<https://www.pulumi.com/docs/reference/pkg/aws/apigateway/vpclink/#target_arn_python|target_arn>
should be a list, but dosent work like that, i tested and it worked setting the arn as a str
also https://www.pulumi.com/docs/reference/pkg/aws/lb/listener/ says that protocol "The protocol for connections from clients to the load balancer. Valid values are TCP
, TLS
, UDP
, TCP_UDP
, HTTP
and HTTPS
. Defaults to HTTP
." but when testing i get:
* error creating ELBv2 Listener: ValidationError: Listener protocol 'HTTP' must be one of 'TLS, TCP, TCP_UDP, UDP'
proud-pizza-80589
09/28/2020, 10:03 PMkind-mechanic-53546
09/28/2020, 11:17 PMclever-plumber-29709
09/29/2020, 12:59 AMmysterious-easter-19881
09/29/2020, 3:45 AMError: invocation of kubernetes:yaml:decode returned an error: error converting YAML to JSON: yaml: mapping values are not allowed in this context
at monitor.invoke (/tmp/issuer-phone-twilio/node_modules/@pulumi/pulumi/runtime/invoke.js:137:33)
at Http2CallStream.call.on (/tmp/issuer-phone-twilio/node_modules/@grpc/grpc-js/src/client.ts:155:9)
at Http2CallStream.emit (events.js:203:15)
at process.nextTick (/tmp/issuer-phone-twilio/node_modules/@grpc/grpc-js/src/call-stream.ts:186:14)
at process._tickCallback (internal/process/next_tick.js:61:11)
I'd share the whole thing but it has some secrets at the moment. What's even weirder is a previously working version of the chart is now giving the same error.quiet-daybreak-92184
09/29/2020, 9:02 AMlimited-rainbow-51650
09/29/2020, 12:41 PM~ pulumi:providers:postgresql: (update)
[id=6577980b-b7e1-466c-8a2d-18edaa0bc9fa]
[urn=urn:pulumi:development::orthanc::pulumi:providers:postgresql::adminconnection]
connectTimeout : "180"
database : "postgres"
databaseUsername: "psqladminun"
host : "<redacted>.<http://postgres.database.azure.com|postgres.database.azure.com>"
password : "[secret]"
port : "5432"
superuser : "false"
username : "psqladminun@<redacted>.<http://postgres.database.azure.com|postgres.database.azure.com>"
Pulumi reports a change to the provider, but none of the settings are different. Why reporting a change then?incalculable-dream-27508
09/29/2020, 2:12 PM"__defaults": [],
repeating everywhere in pulumi stack export
?abundant-egg-71808
09/29/2020, 3:35 PMbitter-application-91815
09/29/2020, 4:34 PMbitter-application-91815
09/29/2020, 4:35 PMbitter-application-91815
09/29/2020, 4:35 PMbitter-application-91815
09/29/2020, 4:35 PM// The password used to access a password protected server. Can be specified only if `transitEncryptionEnabled = true`.
AuthToken pulumi.StringPtrInput
bitter-application-91815
09/29/2020, 4:40 PMbitter-application-91815
09/29/2020, 4:40 PMbitter-application-91815
09/29/2020, 4:43 PMbitter-application-91815
09/29/2020, 4:43 PMwhite-angle-34155
09/29/2020, 10:00 PMconst vaultSecret = new vault.generic.Secret("vaultSecret",{
path: `kv/some/path`,
dataJson: JSON.stringify({
keyA: "valueA",
keyB: "valueB"
})
});
as does
const vaultSecret = new vault.generic.Secret("vaultSecret",{
path: `kv/some/path`,
dataJson: pulumi.interpolate `{\"keyA\":\"${appInsights.name}\",\"keyB\":\"valueB\"}`
});
But the escaped json is messy. I've tried using JSON.stringify but hit type issues which I don't seem to be able to work around (Calling [toString] on an [Output<T>] is not supported
). I've tried in pulumi.interpolate and apply with no success.clever-plumber-29709
09/30/2020, 1:14 AMpulumi up
but for all resources and not only the changed ones?hundreds-egg-46465
09/30/2020, 2:09 AMpulumi preview
in a pulumi/pulumi
docker image I get the following error
pulumi:providers:aws (default_3_2_1):
error: no resource plugin 'aws-v3.2.1' found in the workspace or on your $PATH, install the plugin using `pulumi plugin install resource aws v3.2.1`
My understanding is that these are installed at runtime? Do I need to manually add this step to the dockerfille myself? I have other similar pulumi workflows that don't have this issue.bitter-application-91815
09/30/2020, 11:17 AMbitter-application-91815
09/30/2020, 11:17 AMDiagnostics:
pulumi:pulumi:Stack (development-axiom-cloud):
go: finding <http://github.com/pulumi/pulumi-aws/sdk/v3/go/aws/providers|github.com/pulumi/pulumi-aws/sdk/v3/go/aws/providers> latest
go: finding <http://github.com/pulumi/pulumi-aws/sdk/v3/go/aws|github.com/pulumi/pulumi-aws/sdk/v3/go/aws> latest
go: finding <http://github.com/pulumi/pulumi-aws/sdk/v3/go|github.com/pulumi/pulumi-aws/sdk/v3/go> latest
build development: cannot load <http://github.com/pulumi/pulumi-aws/sdk/v3/go/aws/providers|github.com/pulumi/pulumi-aws/sdk/v3/go/aws/providers>: module <http://github.com/pulumi/pulumi-aws/sdk/v3@latest|github.com/pulumi/pulumi-aws/sdk/v3@latest> found (v3.5.0), but does not contain package <http://github.com/pulumi/pulumi-aws/sdk/v3/go/aws/providers|github.com/pulumi/pulumi-aws/sdk/v3/go/aws/providers>
error: an unhandled error occurred: program exited with non-zero exit code: 1
best-france-51653
09/30/2020, 11:23 AMclever-plumber-29709
09/30/2020, 9:56 PM