Eron Wright

Results 247 comments of Eron Wright

Here's the workaround I used to avoid resetting the tags on subnets that are used by EKS clusters. I used the new `ignore_tags` feature in the AWS provider: ``` provider...

A great enhancement along these lines would be to be able to return validation errors from the `Construct` RPC, as one can do with the `Call` RPC. See: https://github.com/pulumi/pulumi/pull/16132

@lblackstone would you happen to know the origin story of the `KubernetesResource` base class? e.g. would something break if a new component resource weren't extending it? I do see the...

A follow-up about `KubernetesResource`, I came across [some usage](https://github.com/pulumi/pulumi-kubernetes/blob/master/sdk/dotnet/KubernetesResource.cs) that, I think, illustrates its purpose: ```csharp /// /// Base component for containers of Kubernetes resources. /// public abstract class CollectionComponentResource...

Note that the downstream codegen test is failing for an unrelated reason ([discussion](https://pulumi.slack.com/archives/C02FXTZEZ6W/p1708564648033049)).

The provider has some functionality along these lines: 1. It supports the use of a tarball file or URL in the `chart` property, avoiding the need to add a repository....

I posted a PR and am awaiting review.

Looks like the `apiVersion` and `kind` were modeled as inputs across all the SDKs, and all suffer from a variation of the problem. Changing the API seems like a last...

It is proposed that we do a breaking API change for NodeJS SDK, such that the `kind` and `apiversion` properties become eager properties (e.g. `string` vs `Input`). Assumedly we'd change...

I took some observations and there seems to be two problems. The use of `InputMap` seems to produce a JSON serialization error, possibly related to [a breaking change in .NET6](https://learn.microsoft.com/en-us/dotnet/core/compatibility/serialization/6.0/iasyncenumerable-serialization#new-behavior)....