Luke Hoban
Luke Hoban
As requested in https://github.com/pulumi/pulumi/issues/7251, it would be helpful to support `AZURE_STORAGE_AUTH_VIA_CLI` so that blob storage could be authenticated via CLI auth, similar to the existing `AZURE_KEYVAULT_AUTH_VIA_CLI` that was added in...
Today, we process any `pendingDeletes` at the beginning of a deployment. This is not "correct". Two examples: First, a program with a VPC and an Instance. A change causes the...
The following YAML: ```yaml configuration: containerPort: type: Number default: 80 cpu: type: Number default: 512 memory: type: Number default: 128 ``` Currently emits this: ```python config = pulumi.Config() container_port =...
It's common to need to migrate stacks between backends. A few examples: 1. From a filestate backend (e.g. S3) to the Pulumi Service 2. From the Pulumi Service to the...
It's very natural to go to https://www.pulumi.com/registry/packages/kubernetes/api-docs/provider/ and to expect to be able to figure out how to use the `Provider` defined there via an example. This problem exists for...
Today, the Pulumi secret model ensures that outputs that are secret will automatically be returned as secret values, such that they won't be stored in plain text as outputs or...
With a lot of languages and clouds, and in the future multiple architecture templates per language+cloud, we should update the way that `pulumi new` presents the choice of templates. Specifically...
Allow passing raw URN instead of `name=URN` for parent and provider, defaulting name to `parent` and `provider` respectively. Report an error if the names of the parent and provider are...
There are some cases where there are cloud resources that are scoped to an account - like `ServiceLinkedRoles` in AWS or Project Services in GCP. Individual deployments will frequently want...
For long deployments, having the client machine doing the deployment go to sleep during a deployment can lead to potentially bad states for an update. We could consider using OS-specific...