Skip to content
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 managing-resources-with-server-side-apply.md #4057

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ Users may opt into the previous default Client-side Apply (CSA) mode by setting

## Upsert a Resource

With Server-Side Apply mode enabled, you can "upsert" a resource; that is, update a resource if it already exists, or create it if it does not yet exist. You can set the `pulumi.com/patchForce` annotation if you want to force an override for any conflicts with an existing version of the resource.
With Server-Side Apply mode enabled, you can "upsert" a resource; that is, update a resource if it already exists, or create it if it does not yet exist.

If the resource already exists, the default behavior is for any conflicting values to be resolved with the value from the patch being applied (that is, the new version of the resource). If you would prefer to resolve conflicts using the value of the existing resource, add the `pulumi.com/patchForce` annotation:

{{< chooser language "typescript,python,go,csharp,java,yaml" >}}

Expand Down
Loading