Fraser Waters

Results 278 comments of Fraser Waters
trafficstars

> I also been confused by the difference schema of project level & stack level configuration. stack config is _just_ values, project config is values and types/schema. That necessitates some...

We already have `--target-dependents` for other commands, we should just be consistent and support that for `refresh` as well.

`Output.from_input` seems to be the problem: ``` res1 = MyResource("testResource1") reveal_type(res1.nested_numbers) reveal_type(res1.nested_numbers.apply(lambda x: x)) reveal_type(res1.nested_numbers.apply(lambda x: x["foo"])) reveal_type(Output.from_input(res1.nested_numbers)) reveal_type(Output.from_input(res1.nested_numbers).apply(lambda x: x)) ``` ``` lib/test/langhost/output_nested/__main__.py:48: note: Revealed type is "pulumi.output.Output[builtins.dict[Any, Any]]"...

Some related issues: https://github.com/pulumi/pulumi/issues/918 https://github.com/pulumi/pulumi/issues/9925 Importantly 9925 points out that ID tracking isn't enough if the same resource gets touched by multiple stacks. ID tracking probably is enough for intrastack...

There is a design question here to answer here due to how remote component resources work. The user program makes a RegisterResource call for the component resource, the engine catches...

> I think we could re-scope this to returning the partial state immediately after the create has started to avoid situations where there's interruptions causing the partial error not to...

net6 packages work under net8, so nothing strictly needs doing here for this to just work for users. But we'll want to multi target this at some point, and then...

> Since the Python version has operator overloading it makes doing this pretty straightforward but for Go it just means many more methods which might start getting unwieldy. Yeh was...

I suspect that GitHub token your setting doesn't have permissions to access the eks repo. When you specify the version to download it can fallback to get.pulumi.com, so the fact...

Thanks I think this is two issues. 1. That token for whatever reason isn't actually valid and is getting auth errors back from the GitHub API. 2. The typescript SDK...