-
Notifications
You must be signed in to change notification settings - Fork 21
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
Don't JSON-encode provider config #1308
base: main
Are you sure you want to change the base?
Conversation
@@ -18,14 +18,14 @@ public final class ProviderArgs extends com.pulumi.resources.ResourceArgs { | |||
|
|||
public static final ProviderArgs Empty = new ProviderArgs(); | |||
|
|||
@Import(name="cacheEnabled", json=true) |
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.
Reminder here to remove json
from the ImportAnnotation or at least mark deprecated.
Should this code in kubernetes provider be changed (from this PR)? It synthesizes the |
@EronWright I think the CustomResource feature introduced in: Is not actually affected, afaik, correct me if I am wrong it only affects custom resources that are not providers? The JSON encoding is only affecting explicit providers (and, as we found out, default providers), but I'm hoping it has no interaction with #3020. Happy to discuss further. |
We will need to add a flag here for a flagged rollout and resurrect this change. |
See pulumi/pulumi#15032 for context.