fresh-painting-68573
11/01/2020, 6:24 PMstocky-spoon-28903
11/01/2020, 6:51 PMcrd2pulumi
stocky-spoon-28903
11/01/2020, 6:51 PMcurved-alligator-54130
11/01/2020, 8:01 PM# create bucket works great.
sink = logging.OrganizationSink("resource-ops-sink",
destination=f"<http://storage.googleapis.com/{bucket.id}|storage.googleapis.com/{bucket.id}>",
filter=filter,
org_id=org)
# create Org Sink not so much.
sink = logging.OrganizationSink("resource-ops-sink",
destination=f"<http://storage.googleapis.com/{bucket.id}|storage.googleapis.com/{bucket.id}>",
filter=filter,
org_id=org)
The above sink creation returns an error
* googleapi: Error 404: Bucket <pulumi.output.Output object at 0x10bcc16a0> does not exist, notFound
The destination input of a sink for a bucket is the value "storage.googleapis.com/BUCKET". I understand the value doesn't exist yet and it's set asynchronously. I've tried both
dest = Output.concat("<http://storage.googleapis.com/|storage.googleapis.com/>", bucket.id)
dest = Output.all(bucket.id).apply(lambda l: f"<http://storage.googleapis.com/{l[0]}|storage.googleapis.com/{l[0]}>")
Any thoughts or suggestions on how I can make this work? Thanks,magnificent-restaurant-51456
11/02/2020, 8:02 AMbored-intern-60856
11/02/2020, 8:49 AMmysterious-portugal-46322
11/02/2020, 9:20 AMfierce-engine-31599
11/02/2020, 10:30 AMbillions-glass-17089
11/02/2020, 12:24 PMwet-soccer-72485
11/02/2020, 3:04 PMbig-account-56668
11/02/2020, 3:33 PMterraform mv
? I am refactoring and would like to rename items within a single state file. If there is no facility to move/rename resources, is there another way to achieve the same result?bitter-application-91815
11/02/2020, 4:27 PMpulumi export
compatible with terraform in order for terraform to erect the same stack from just that json file ?bitter-application-91815
11/02/2020, 4:27 PMbitter-application-91815
11/02/2020, 4:28 PMstocky-spoon-28903
11/02/2020, 4:41 PMstocky-spoon-28903
11/02/2020, 4:42 PMicy-jordan-58549
11/02/2020, 5:16 PMdeprecated
?chilly-hairdresser-56259
11/02/2020, 7:47 PMwet-sunset-4939
11/03/2020, 1:28 AMthankful-thailand-33082
11/03/2020, 2:56 AMworried-queen-62794
11/03/2020, 6:11 AMComponentResource
without having it be deleted and recreated?magnificent-restaurant-51456
11/03/2020, 11:20 AMwonderful-pager-17869
11/03/2020, 2:18 PMicy-nightfall-69409
11/03/2020, 2:24 PMtall-needle-56640
11/03/2020, 8:18 PMAZURE_STORAGE_ACCOUNT
and AZURE_STORAGE_KEY
, but when I run
pulumi login --cloud-url <https://pulumistatepoc.blob.core.windows.net/>
it prompts me for an access token. What access token? Shouldn't the env vars be enough?
How do I get this to work?worried-queen-62794
11/04/2020, 1:00 AMouts
which says that it is for Any properties that were computed during updating
. My interpretation of that was that I only needed to set it if I was computing properties in the update method. Do I need to set that to all the inputs even if I don't touch them?tall-oil-62666
11/04/2020, 5:22 AMerror: preview failed
panic: interface conversion: interface {} is string, not int
goroutine 184 [running]:
<http://github.com/terraform-providers/terraform-provider-aws/aws.resourceAwsEcsLoadBalancerHash(0x556d040|github.com/terraform-providers/terraform-provider-aws/aws.resourceAwsEcsLoadBalancerHash(0x556d040>, 0xc002350420, 0xc00232fa10)
/home/runner/go/pkg/mod/github.com/pulumi/terraform-provider-aws@v1.38.1-0.20201023104507-9632e543c200/aws/resource_aws_ecs_service.go:1169 +0x47f
Offending config - note the portMappings, first line is ok, fails when using the ApplicationListener, have also tried the NetworkListener
const httpListener = new awsx.lb.ApplicationListener("http-listener", {
external: true,
port: 80,
});
let actAdminService = new awsx.ecs.FargateService(serviceName, {
name: serviceName,
cluster,
desiredCount: 1,
serviceRegistries: {
registryArn: discoveryService.arn,
},
taskDefinitionArgs: {
container: {
image: imageName,
memory: 256,
portMappings: [
// THIS WORKS { containerPort: 80, hostPort: 80, protocol: "tcp" }, { containerPort: 443, hostPort: 443, protocol: "tcp" }
httpListener //THIS FAILS
],
},
executionRole: execRole,
},
platformVersion: context.defaultPlatformVersion,
});
As well as https://medium.com/it-dead-inside/deploy-aws-fargate-clusters-with-pulumi-e06637e6821d and example here https://www.pulumi.com/blog/get-started-with-docker-on-aws-fargate-using-pulumi/tall-oil-62666
11/04/2020, 5:32 AMPULUMI_DISABLE_PROVIDER_PREVIEW=1
Seems to solve the issuesticky-translator-17495
11/04/2020, 12:15 PMadventurous-book-24480
11/04/2020, 1:16 PM