Luke Hoban
Luke Hoban
The new resource docs provide a high quality cross-language experience for the majority of Pulumi APIs. However, they have some coverage gaps that mean they do not present the full...
There are languages specific docs for the `terraform` provider, but not yet resource docs. https://www.pulumi.com/docs/reference/pkg/nodejs/pulumi/terraform/
It would be helpful to have examples and walkthroughs for importing a resource into a component with `--parent`. Ideally in https://www.pulumi.com/docs/guides/adopting/import/.
The "Import" section is intended to be at the bottom of resource docs pages, and for most resources it is. However, on https://www.pulumi.com/docs/reference/pkg/docker/service/, the "Import" section is at the top...
It would be nice if our docs were versioned so that users could navigate directly to the `1.8` docs. This may make sense initially just for API Docs (each of...
ECS Services have complex initialization semantics, and many potential failure modes that cause the Service to not reach a steady state despite logically being created. Ideally, we would provide visibility...
We added support for Python, .NET and Go programs in https://github.com/pulumi/pulumi-kubernetes-operator/pull/77. We should add test coverage for all languages as well as a follow-up.
The initial implementation of Python support in https://github.com/pulumi/pulumi-kubernetes-operator/pull/77 did not enable support for Python projects that do not have a `virtualenv` configuration, as installing requirements for these projects would require...
I was looking into https://github.com/pulumi/pulumi-awsx/issues/820, and it seems it is due to an underlying issue in Node.js MLCs. I reduced it down to the following schema: ```json { "name": "xyz",...
Today, calls to `Diff` and `Check` are done serially across all registered resources. These two calls frequently involve both gRPC I/O to a provider as well as potentially network I/O...