Lee Zen
Lee Zen
_Updated November 2, 2021 by `@infin8x`_ We periodically release new major versions of Pulumi, with a combination of new features and important breaking changes. This epic is a living document...
It seems like the migration in the `aws-django-voting-app` example doesn't actually work. Even after updating the the task definition to include `"entrypoint": ["sh", "-c"],` and chmod'ing `setupDatabase.sh` to be executable...
There's no mechanism to ensure that code blocks referencing example code match. We should have a mechanism to audit that code in the README matches that within the example or...
Today, we don't provide information on the default timeouts for a resource/provider. We should include a section on the create, update, delete timeouts for resources.
Given the interest in https://github.com/pulumi/pulumi/issues/3507 we should document what you can already do with PS (and any potential issues you might run into).
Example: https://www.pulumi.com/docs/reference/pkg/aws/ec2/getroutetables/ ```typescript import * as pulumi from "@pulumi/pulumi"; import * as aws from "@pulumi/aws"; const rts = pulumi.output(aws.ec2.getRouteTables({ filters: [{ name: "tag:kubernetes.io/kops/role", values: ["private*"], }], vpcId: var_vpc_id, }, {...
Because we strip off `Input[T]` and `Output[T]` to make it easier to read the documentation, it's not always clear if something can or cannot be an `Output` For example, Get/Lookup...