clever-dawn-27155
10/16/2019, 10:49 AMcolossal-room-15708
10/16/2019, 11:57 AMbest-waiter-16927
10/16/2019, 1:05 PMbetter-rainbow-14549
10/16/2019, 1:09 PMResources:
~ 2 to update
- 78 to delete
+-15 to replace
95 changes. 8 unchanged
~~
Resources:
~ 2 updated
101 unchanged
Duration: 5m49s
shy-barista-34801
10/16/2019, 1:34 PMshy-barista-34801
10/16/2019, 1:35 PMhandsome-yak-9760
10/16/2019, 1:35 PMhandsome-yak-9760
10/16/2019, 1:36 PMhandsome-yak-9760
10/16/2019, 1:36 PMshy-barista-34801
10/16/2019, 1:37 PMsubprocess
seems like something I really should try using. Is there a way to import that object before invoking call()
?shy-barista-34801
10/16/2019, 1:42 PMhandsome-yak-9760
10/16/2019, 3:59 PMDiagnostics:
aws:ec2:VpcPeeringConnection (vpc-peering-connection):
error: 1 error occurred:
* missing required configuration key "aws:region": The region where AWS operations will take place. Examples are us-east-1, us-west-2, etc.
Set a value using the command `pulumi config set aws:region <value>`.
handsome-yak-9760
10/16/2019, 4:00 PMpulumi.Config()
handsome-yak-9760
10/16/2019, 4:01 PMmillions-judge-24978
10/16/2019, 4:42 PMpulumi up
shows no diff. Then I uncomment the service object and try to pulumi up
again.
The first run crashed, the second one gives a very odd unexpected diff.alert-beard-9601
10/16/2019, 7:23 PMfull-dress-10026
10/16/2019, 11:04 PMearly-intern-90238
10/17/2019, 2:38 AMwide-judge-30323
10/17/2019, 4:34 AMelegant-dress-88912
10/17/2019, 8:31 AMworried-engineer-33884
10/17/2019, 10:53 AMbroad-dog-22463
10/17/2019, 10:57 AMrhythmic-finland-36256
10/17/2019, 3:22 PMpulumi destroy
on an AKS cluster with custom networking (referencing a self-created subnet from the aks cluster) resulted in an error of wrong destroy order (subnet cannot be deleted as there are resources in it) So pulumi lost the aks cluster from the pulumi state but it still exists in Azure. Adding a dependsOn
seems unnecessary as the chain should already exist due to the reference of the subnet in the aks cluster creation. How to clean that up? pulumi up
will create an additional cluster as there is no more reference in the pulumi state…incalculable-engineer-92975
10/17/2019, 4:56 PMmillions-judge-24978
10/17/2019, 6:02 PMaws.getCallerIdentity
that was working and has somehow now stopped. I changed the program to just
import * as pulumi from '@pulumi/pulumi';
import * as aws from '@pulumi/aws';
(async () => {
console.log('start')
console.log(await aws.getCallerIdentity());
console.log('end')
})();
and it hangs on aws.getCallerIdentity()
Any idea what could have happened?sparse-tomato-56640
10/17/2019, 6:40 PMnew awsx.apigateway.API(`firebaseAuth-${stack}`, {
routes: [
{
path: '/',
method: 'POST',
apiKeyRequired: true,
eventHandler: new aws.lambda.CallbackFunction(`firebaseAuth-${stack}`, {
callback: (event, _, cb) =>
cb(null, {
statusCode: 200,
headers: {
'Access-Control-Allow-Origin': '*',
},
body: handler(event),
}),
}),
},
],
})
Is there a simple way to add cors headers to the preflight response in the awsx implementation?cool-egg-852
10/17/2019, 7:46 PM[Can't preview] all chart values must be known ahead of time to generate an accurate preview.
during preview?adamant-dress-73325
10/17/2019, 11:53 PMtask.run({ cluster });
on a FargateTaskDefinition at the top-level of our pulumi program during update? We are trying to run a one-off task inside a container, without needing lambda like in https://www.pulumi.com/docs/guides/crosswalk/aws/ecs/#running-fire-and-forget-tasks .handsome-xylophone-18806
10/18/2019, 11:29 AMbitter-island-28909
10/18/2019, 6:57 PMbitter-island-28909
10/18/2019, 6:57 PM