rapid-eye-32575
02/12/2020, 11:38 AMabundant-author-13372
02/12/2020, 12:33 PMconst vpc = new awsx.ec2.Vpc(name, {
subnets: [{type: 'public'}],
tags: tags,
});
const cluster = new eks.Cluster(name, {
vpcId: vpc.id,
subnetIds: vpc.publicSubnetIds, }
Any idea on why it's not destroying properly? Could this be a bug? It's happened before, and I've had to go and manually destroy some underlying resources (load blancers I think). I do have some Helm charts deployed in the cluster (manged with pulumi as well) that include Load Balancer services, and these seem to be scheduled for destruction after the subnet and ig. Might this be it? any suggestions on how to properly manage dependencies for these charts?bitter-dentist-28132
02/12/2020, 3:36 PMipAddress
. but in AWS, the ipAddress
is actually a hostname, so obviously it can't be used as the value for an A record. what's the way to do the same kind of thing in AWS?thankful-optician-22583
02/12/2020, 4:48 PMelegant-crayon-4967
02/12/2020, 9:41 PMbitter-dentist-28132
02/12/2020, 11:14 PMpulumi.Output<>
s. how can i do this?mammoth-elephant-55302
02/13/2020, 4:29 AMpulumi up
on uncommitted codeabundant-author-13372
02/13/2020, 12:44 PMlimited-rainbow-51650
02/13/2020, 1:17 PMaliases
rock!icy-london-58403
02/13/2020, 5:22 PMmy-special-bucket-abc123
and then pulumi sees the need to destroy and recreate. I have create before destroy set. Then it tries to create my-special-bucket-xyz321
. Let's say I'm good with that but I need the data moved with the change. I could make an ssm automation document that could take a source bucket as input and a destination bucket as input and copy everything over. Would I be able to trigger the execution of that ssm automation document or any other type of script to handle that phase of the pulumi resource replacement lifecycle? I am not currently working on solving this but I'm just curious.mammoth-caravan-51104
02/13/2020, 7:18 PMcareful-market-30508
02/13/2020, 7:19 PMshy-microphone-28807
02/13/2020, 9:33 PMawsx.ec2.Vpc.getDefault()
to get the default VPC in my account, is there a way to get the default security group in that VPC?echoing-solstice-67837
02/14/2020, 12:41 AMaws.organizations.Account
but I’d like to see examples of this in use. Sadly, it’s not one of the modules in the examples Github repo so all I can find is the module reference page (which reads like Greek to non-devs like myself). I just need to see one working example. Anyone here have something like that?echoing-barista-73764
02/14/2020, 2:09 PMabundant-author-13372
02/14/2020, 3:07 PMwitty-account-74131
02/14/2020, 4:38 PMwitty-account-74131
02/14/2020, 4:40 PMmammoth-caravan-51104
02/14/2020, 5:49 PMbillions-lock-73409
02/14/2020, 5:55 PMrequired
at the top of the handler. It’s relative to the main lambda file yet won’t pull it in.broad-boots-45639
02/14/2020, 6:06 PMcareful-market-30508
02/14/2020, 6:27 PMwitty-account-74131
02/14/2020, 8:29 PMcareful-market-30508
02/14/2020, 8:38 PMcareful-market-30508
02/14/2020, 8:46 PM:param str id: The unique provider ID of the resource to lookup.
from cloudformation/stack.py - Any idea what is this for aws ? is it just 'aws' ?swift-painter-31084
02/14/2020, 9:18 PMaws:lambda:Function (webhook-to-sqs):
error: Error creating Lambda function: ValidationException:
status code: 400, request id: 8c850971-e5d9-4be9-a285-5905fca34f90
with this resource:
return new aws.lambda.Function("webhook-to-sqs", {
code: "./inc/core/processors/webhook-to-sqs.zip",
handler: "index.handler",
description: "write events to queue and return 200",
runtime: "nodejs12.x",
role: role,
environment: {
variables: {
"QUEUEID": queue.arn
}
}
});
As part of my troubleshooting efforts I was able to create the lambda with the AWS CLI using mostly the same settings and zip, and was able to verify its working in the console as expected.
Is there anything I can do to get a more clear error message?worried-umbrella-80893
02/14/2020, 10:17 PMbitter-dentist-28132
02/15/2020, 1:11 AMBuffer
i get back directly to an AssetArchive
mammoth-caravan-51104
02/15/2020, 11:13 PMhandsome-xylophone-18806
02/16/2020, 2:29 PMaws.rds.Instance
with a securityGroup
which allows only access from a specific aws.ec2.Instance
. But If I would like to use mysql.Provider
to create a database and user, I get this error when run pulumi up
error: Could not connect to server: dial tcp 10.0.8.127:3306: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
How could I achieve that?