shy-yak-78243
02/09/2020, 7:58 PMincalculable-dream-27508
02/09/2020, 7:59 PMincalculable-dream-27508
02/09/2020, 8:00 PMincalculable-dream-27508
02/09/2020, 8:00 PMshy-yak-78243
02/09/2020, 8:05 PMshy-yak-78243
02/09/2020, 8:05 PMshy-yak-78243
02/09/2020, 8:05 PMshy-yak-78243
02/09/2020, 8:05 PMadorable-sugar-92867
02/10/2020, 8:38 AMrapid-eye-32575
02/10/2020, 8:53 AMrhythmic-finland-36256
02/10/2020, 9:20 AMpulumi up
runs (even during preview phase) with a project containing two `StackReference`s. It’s hanging on running read pulumi:pulumi:StackReference ajaegle/proj/stack
for ages and the super verbose log doesn’t list any more lines than the ones that were there since the beginning (the diff of some resources). I don’t expect that to be lossy internet connectivity as my machine is constantly using almost two cores for the pulumi process.wet-noon-14291
02/10/2020, 11:23 AMcold-caravan-83486
02/10/2020, 1:46 PMlet containerIdHolder = CustomResource("justAName", "mycontainer", ResourceArgs.Empty)
...
let envVars = Inputs.ServiceTemplateSpecContainersEnvsArgs(Name = "containerName", Value = containerIdHolder.Id)
...
let webApp = WebApp (envVars = ["containerName", containerIdHolder.Id)])
...
let actualContainer = Container (Name = containerIdHolder.Id, CorsRules = (Origins = [webApp.url]))
Is that possible?adventurous-jordan-10043
02/10/2020, 4:30 PMbitter-dentist-28132
02/10/2020, 6:56 PMruntime.listResourceOutputs
is fixed, are there any suggestions from folks on what i could use in the interim? i'm using it to, if no resource X has ever been deployed, deploy it, otherwise, use what's already deployed.careful-market-30508
02/10/2020, 6:56 PMbig-potato-91793
02/10/2020, 9:56 PMdelightful-truck-1268
02/10/2020, 9:57 PMsteep-caravan-65104
02/11/2020, 3:40 AMpulumi up --target=xxx
? In one of our stacks, I always get an error similar to Target 'urn:pulumi:<pulumi-stack-name>::<pulumi-project-name>::gcp:dns/recordSet:RecordSet::cname-dev' could not be found in the stack. Did you forget to escape $ in your shell?
I have been careful to ensure that there's no $
in the URN name as the error message seems to suggest.
The reason I need to perform such partial updates is that one of the objects in this Pulumi stack is a GCP VPC private subnet, whose metadata gets updated on a vanilla pulumi up
, but then Pulumi can't update this subnet URN since it's already being used by a GKE cluster.swift-painter-31084
02/11/2020, 3:53 AMconst apiGateway = ( queueIDObject ) => {
return new awsx.apigateway.API( GATEWAY_NAME, {
routes: [ {
path: ROUTE,
method: 'POST',
// Note wrapping this as a callback function it can have additional attributes set on the lambda
eventHandler: new aws.lambda.CallbackFunction("write-event-to-sqs", {
memorySize: 128,
callback: async ( event, context ) => {
return webhookProcess.fire( event, context, queueIDObject );
},
description: "write events to queue and return 200"
})
} ]
} );
};
Any ideas on how I could get eventHandler
logs written to a named log group?sparse-car-32271
02/11/2020, 7:55 AMterraform/variants/webapi-dev/webapi-dev.tf
to pulumi/index.ts
.
├── pulumi
│ ├── Pulumi.yaml
│ ├── index.ts
└── terraform
├── README.md
├── modules
│ ├── shared
│ │ └── <http://main.tf|main.tf>
│ └── webapi
│ └── <http://main.tf|main.tf>
└── variants
├── shared
│ └── <http://shared.tf|shared.tf>
├── webapi-dev
│ └── <http://webapi-dev.tf|webapi-dev.tf>
└── webapi-prod
└── <http://webapi-prod.tf|webapi-prod.tf>
witty-yacht-82771
02/11/2020, 3:39 PMwitty-yacht-82771
02/11/2020, 4:15 PMcolossal-plastic-46140
02/11/2020, 6:33 PMelegant-crayon-4967
02/11/2020, 9:08 PMpulumi config set --secret …
Now I want to remove those so I can run the stack from a different location. Just clearing them out of my local config file didn’t seem to do anythingswift-painter-31084
02/11/2020, 10:12 PMsalmon-account-74572
02/11/2020, 11:36 PMrefined-vegetable-66224
02/12/2020, 1:55 AMpulumi up
I am getting the following error
error: deleting urn:pulumi:production::insig-express::awsx:x:ecs:Cluster$awsx:x:autoscaling:AutoScalingGroup$awsx:x:autoscaling:AutoScalingLaunchConfiguration$aws:ec2/launchConfiguration:LaunchConfiguration::apps-autoscaling-prod: error deleting Autoscaling Launch Configuration (app-autoscaling-prod-9341984): ResourceInUse: Cannot delete launch configuration app-autoscaling-prod-9341984 because it is attached to AutoScalingGroup app-autoscaling-prod-654d7a2-Instances-10K7OFBLTHZ2N
status code: 400
I've tried everything on this page https://www.pulumi.com/docs/troubleshooting with no luck. Any advice would be appreciated!breezy-butcher-78604
02/12/2020, 5:48 AMmammoth-caravan-51104
02/12/2020, 9:15 AMkubernetes:extensions:Deployment (kube-system/monitoring-influxdb):
warning: extensions/v1beta1/Deployment is deprecated by apps/v1/Deployment and not supported by Kubernetes v1.16+ clusters.
error: 2 errors occurred:
* resource kube-system/monitoring-influxdb was successfully created, but the Kubernetes API server reported that it failed to fully initialize or become live: 'monitoring-influxdb' timed out waiting to be Ready
* Minimum number of Pods to consider the application live was not attained