Anton Tayanovskyy
Anton Tayanovskyy
1. That sounds good, if we can tell where the error occurred which might not be easy. 2. What doesn't work about "__name__ == '__main__'"?
Wonderful. Things to watch out here similar to Python besides making sure side effects are applied (in Python there were important side-effects related to init'ing providers) is that type-checking continues...
Just my 2c.. Based on having solved it for Python, I hope the initialization problem is not a real blocker here. In Python we edited codegen to move init work...
Hitting a snag in the typescript-only solution space. There are two styles of import that are currently supported, and I cannot figure out a solution that does not break one...
I've worked out a better example building off Daniel's prototype here: https://github.com/pulumi/pulumi-azure-native/pull/1944 The break is in compiling TS programs that use non-recommended import forms and reference those imported forms in...
Implemented this as a codegen feature to benefit all providers n https://github.com/pulumi/pulumi/pull/10538 The next upgrade of providers should result in lazy-loaded modules. For azure-native specifically we also recommend setting useTypeOnlyReferences=true...
Possibly related: https://github.com/pulumi/pulumi/pull/6623 proposed change to propagate executable bit for "template expansion" when Pulumi populates a folder based on a template by copying files.
https://app.bors.tech/repositories/47808/log#batch-282189 ``` {%Ecto.ConstraintError{ type: :unique, constraint: "statuses_identifier_batch_id_index", message: "constraint error when attempting to insert struct:\n\n * statuses_identifier_batch_id_index (unique_constraint)\n\nIf you would like to stop this constraint violation from raising an\nexception and...
Add default_addons_to_remove to schema
Reading this further, this patch seems to implement the following property not supported by the upstream provider: [default_addons_to_remove](https://www.pulumi.com/registry/packages/eks/api-docs/cluster/#default_addons_to_remove_python) Sequence[str] List of addons to remove upon creation. Any addon listed will...