glamorous-printer-66548
10/11/2018, 12:00 AMdeleteBeforeReplace
option? Related issue: https://github.com/pulumi/pulumi/issues/1620thankful-artist-95425
10/11/2018, 12:42 AMsparse-insurance-40223
10/11/2018, 12:57 PMbusy-umbrella-36067
10/11/2018, 3:50 PMsparse-insurance-40223
10/11/2018, 4:25 PMsparse-insurance-40223
10/11/2018, 4:25 PMimportant-jackal-88836
10/11/2018, 8:06 PMbusy-umbrella-36067
10/11/2018, 9:57 PMbusy-umbrella-36067
10/11/2018, 9:57 PMglamorous-printer-66548
10/12/2018, 9:28 AMbright-motherboard-93404
10/12/2018, 1:08 PM--parallel 100
. I simply have a list of ec2 instances that I'm spinning up and down, and I've notices that the bigger the list, the longer these operations take. Have I accidentally introduced some kind of data dependency between my machines that forces Pulumi to process them one-by-one?incalculable-sundown-82514
10/12/2018, 4:54 PMbrave-angle-33257
10/12/2018, 6:49 PM.get()
during an update.. is this where I'd use apply()
instead?full-dress-10026
10/12/2018, 11:42 PMcloud-aws:acmCertificateARN
in my stack config, my cloud.Service
does not create an ALB with the SSL cert set.full-dress-10026
10/12/2018, 11:44 PMfull-dress-10026
10/12/2018, 11:46 PMcloud.Service
uses a NLB not a ALB. Hmm.brave-angle-33257
10/13/2018, 12:53 AMgifted-lion-29985
10/14/2018, 2:59 AMgifted-lion-29985
10/14/2018, 3:26 AMgifted-lion-29985
10/14/2018, 3:56 AMgifted-lion-29985
10/14/2018, 3:58 AMcold-coat-35200
10/14/2018, 11:09 AMglamorous-printer-66548
10/15/2018, 12:10 AMgreat-refrigerator-15198
10/15/2018, 2:58 PMaws:cloudwatch:MetricAlarm: test-cache-redis-EngineCPUUtilization
error: Plan apply failed: Creating metric alarm failed: ValidationError:
status code: 400, request id: ...
Does anyone with more experience in Pulumi and/or Terraform knows how may I proceed? AWS docs list an infinity of possibilities for 400, but the lack of message doesnāt help to pin down what is going onbusy-umbrella-36067
10/15/2018, 5:44 PMcreamy-potato-29402
10/15/2018, 5:45 PMbusy-umbrella-36067
10/15/2018, 5:50 PMgetCluster
function that provides the kubeconfig. which repo should I file the issue under?busy-umbrella-36067
10/15/2018, 5:51 PMglamorous-printer-66548
10/16/2018, 1:57 AMtall-monitor-77779
10/16/2018, 2:33 PMtall-monitor-77779
10/16/2018, 2:33 PMwhite-balloon-205
10/16/2018, 4:22 PMtall-monitor-77779
10/16/2018, 5:01 PMUse '.get' methods and do a deployment to read the resource into the checkpoint file.
?cold-coat-35200
10/16/2018, 6:35 PMwhite-balloon-205
10/16/2018, 6:43 PMconst cluster = aws.eks.Cluster.get("mycluster", "eksCluster-4606f9f");
That gets an initialized instance of a Cluster and stores it in the checkpoint file. If you pulumi stack export > stack.json
you'll see:
{
"urn": "urn:pulumi:gettest-dev::gettest::aws:eks/cluster:Cluster::mycluster",
"custom": true,
"id": "eksCluster-4606f9f",
"type": "aws:eks/cluster:Cluster",
"outputs": {
...
},
"parent": "urn:pulumi:gettest-dev::gettest::pulumi:pulumi:Stack::gettest-gettest-dev",
"external": true,
"dependencies": null,
"initErrors": null,
"provider": "urn:pulumi:gettest-dev::gettest::pulumi:providers:aws::default::3c21fdf5-0031-4f19-9576-838e47b613fb"
}
Note the external: true
- which indicates this is not managed by Pulumi.tall-monitor-77779
10/16/2018, 7:11 PM