-
Notifications
You must be signed in to change notification settings - Fork 12
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
Support partial resource initialization errors #210
Conversation
c1b4da4
to
f5b8dbc
Compare
This is motivated by pulumi/pulumi-pulumiservice#84, which requires control over partial initialization. |
f5b8dbc
to
84f8012
Compare
This allows a provider to indicate that it tried to Create, Update or Read a resource but was not able atomically succeed, leaving the resource in a partially initialized state.
84f8012
to
c3019cb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks sensible but I'm not familiar with pulumi-go-provider.
Does this code run before the provider implementation of Update, Create etc or does it wrap the provider implementation?
Providers based on |
This allows a provider to indicate that it tried to Create, Update or Read a resource but was not able atomically succeed, leaving the resource in a partially initialized state.