Evan Boyle
Evan Boyle
The fact that classNames aren't configurable makes it difficult to use this component with something like bootstrap. It would be really nice if your exposed a dictionary of classnames that...
The EKS package currently exposes the private node implementation and does not use the generated MLC surface area. For consistency in docs and behavior we should make the (breaking) change...
`Cluster.kubeconfig` is typed as `Output`, which seems overly permissive given the implementation: https://github.com/pulumi/pulumi-eks/blob/master/nodejs/eks/cluster.ts#L182 Through tracing this code, it appears that we always get an object back. The any typing can...
https://github.com/pulumi/examples/blob/master/Makefile#L14 This only hits the first level of `*.ts` files in the next directory level. If you run `tslint -c tslint.json '**/*.ts'` it runs over all nested subdirectories. I would...
Similar to the way that you can specify an org to parent a stack to at create time, we should support parenting to a team as well. This could be...
We support specifying a default org for `pulumi stack create`: https://www.pulumi.com/docs/reference/cli/pulumi_org_set-default/ We should support something similar for teams. There is a fair amount of friction in managing team permissions, and...
Running `pulumi up` on a `t2.small` with a policy pack `pulumi-internal-policies` causes the update to hang and timeout with instance CPU maxed out at 99%. Running the same update with...
It would be nice if there was an easy way to set properties of the lambda like timeout when using the following form: ``` queue.onEvent("reaper-queue-processor", async (e) => {...}); ```...
`pulumi import --from terraform` does not easily support a stack importing resources from multiple AWS accounts and multiple providers as a result.
We added public APIs for persistent deployment settings that can be inherited when an update is run. We need to update remote automation API to support this field. Automation API...