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 PMincalculable-diamond-5088
10/18/2019, 7:51 PMworried-city-86458
10/19/2019, 12:51 AMpulumi up
with no significiant changes
Ubuntu 18.04.3, nodejs 12.11.1, @pulumi/pulumi 1.3.4, @pulumi/aws 1.7.0, @pulumi/kubernetes 1.2.3
Not sure but is the hang issue supposed to be fixed now?early-intern-90238
10/19/2019, 2:27 AMhandsome-xylophone-18806
10/19/2019, 11:48 AMfile://~
for all projects and run pulumi up
for company
project then department
project, Pulumi will delete the company
stack and create stack for department
.
If using Pulumi Backend Service, this statement works:
new pulumi.StackReference('clstokes/aws-ts-stackreference-company/dev')
where clstokes
in the example is the Pulumi Backend Service username, aws-ts-stackreference-company
is the project name and dev
is the current stack.
If I set backend url, so each project has a separated .pulumi
at it's root directory
Pulumi.yaml
backend:
url: file://./
Now, how can I get the stack reference of company
or department
in team
project: new pulumi.StackReference('???')
?
new pulumi.StackReference('clstokes/aws-ts-stackreference-company/dev')
will produces error:
pulumi:pulumi:StackReference (clstokes/aws-ts-stackreference-company/dev):
error: Preview failed: unknown stack "clstokes/aws-ts-stackreference-company/dev"
cold-coat-35200
10/19/2019, 12:13 PMearly-intern-90238
10/19/2019, 5:28 PMglamorous-printer-66548
10/19/2019, 5:30 PMsteep-toddler-94095
10/20/2019, 10:25 PMtall-rose-87315
10/21/2019, 5:22 AMminiature-potato-84713
10/21/2019, 10:05 AM