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

Website Cloudfront Distributions - Ignore Changes In staging Property #4401

Merged
merged 4 commits into from
Nov 20, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
wip
  • Loading branch information
adrians5j committed Nov 20, 2024
commit 22d4c73d11b94a7eff58f10483332db2f9a1602c
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,10 @@ export const createWebsitePulumiApp = (projectAppParams: CreateWebsitePulumiAppP
// that, because this property did not exist before, it will always be considered as a change
// upon deployment.
// We might think this is fine, but, the problem is that a change in this property causes
// a full replacement of the Cloudfront distribution, which is not acceptable.
// Note that we've seen this being especially problematic in cases where a user already
// has a custom domain associated with the Cloudfront distribution.
// a full replacement of the Cloudfront distribution, which is not acceptable. Especially
// if a custom domain has already been associated with the distribution. This then would
// require the user to disassociate the domain, wait for the distribution to be replaced,
// and then re-associate the domain. This is not a good experience.
ignoreChanges: ["staging"]
}
});
Expand Down
Loading