-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to Pulumi v3.21.0. #63
Conversation
This brings in many improvements to code generation, including support for default values for union-typed properties.
I believe that this will fix #22. |
I'm still getting an error with this change:
|
@lblackstone would it be easy to boil the repro you have down into a testcase? |
Sure, should be easy. Here's the command line output for reference:
|
Argh, I should have read #22 more closely. My eyes caught on the property definitions, not the defaults definition. We still do not support default values for non-primitive types--that will require new feature work in the schema package and code generators. |
In the meantime, we could at least avoid the panic by either |
This brings in many improvements to code generation, including support
for default values for union-typed properties.