Anton Tayanovskyy
Anton Tayanovskyy
Another little anecdote here. IN pulumi-eks we have: ``` this.core = pulumi.output(cluster.core); ``` Now even though cluster.core.provider is known, using this.core.provider is not. Instead we are now trying: ``` this.core...
pulumi.all is also affected: https://github.com/pulumi/pulumi/issues/17704
Curiously this compiles, can be used as a workaround? ```typescript function makeOutput(result: T): pulumi.Output { return pulumi.output(1).apply(_ => result); } ```
@corymhall could use your help rewriting or clarifying this issue 🙏
This could help us emit warnings to users who try to use ignoreChanges and see no results and direct them to transforms in https://github.com/pulumi/pulumi-awsx/issues/856
Another interesting option is customTimeouts. https://github.com/pulumi/pulumi-eks/issues/393 - we probably do not want to propagate this do child resources by default, but we do want to warn the user if they...
Thanks for filing this @johnbaro my team will pick up to try to root cause. Looks like you are setting https://github.com/pulumi/pulumi-cloudflare/blob/895770afc6f30bd9dceee5297f75b57bc57901ee/sdk/nodejs/types/input.ts#L3196 but the provider rejects it. The provider models it...
I've spent some time here trying to repro, unfortunately it looks like our test CloudFlare account does not have R2 buckets enabled so I could not readily test with that,...
I've checked on this with the team, indeed it looks like we are lacking a migration guide at this point but there're some short notes in the release notes https://github.com/pulumi/pulumi-cloudflare/releases/tag/v6.0.0...
Thanks for logging it here with a good repro.