[Backmerge][OSDEV-2318] Disable prevent destroy for msk cluster#863
Conversation
|
📝 WalkthroughWalkthroughThe Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Suggested reviewers
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 0
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
deployment/terraform/kafka.tf (1)
25-31: Acknowledge the change; ensure it remains temporary and consider adding safeguards.Disabling
prevent_destroyis necessary to unblock the Pre-prod environment deletion. However, since this is a shared Terraform configuration applied to all environments through variable inputs, the change will affect deletion protection across all deployments—not just Pre-prod.Since the code comment indicates this configuration should be "removed when no longer needed," recommend:
- Re-enable
prevent_destroy = trueafter the Pre-prod deletion is complete, or- Add a comment documenting the temporary nature and expected removal timeline to prevent accidental permanent removal in other environments.
📜 Review details
Configuration used: Repository UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
deployment/terraform/kafka.tf
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (14)
- GitHub Check: init-and-plan
- GitHub Check: run-flake8-linter
- GitHub Check: run-eslint-linter-and-prettier-formatter
- GitHub Check: get-base-branch-contricleaner-cov
- GitHub Check: run-dd-code-quality
- GitHub Check: run-contricleaner-code-quality
- GitHub Check: get-base-branch-dd-cov
- GitHub Check: run-integration-test-code-quality
- GitHub Check: run-countries-code-quality
- GitHub Check: get-base-branch-django-cov
- GitHub Check: run-fe-code-quality
- GitHub Check: run-django-code-quality
- GitHub Check: get-base-branch-fe-cov
- GitHub Check: get-base-branch-countries-cov
✏️ Tip: You can disable this entire section by setting review_details to false in your review settings.
React App | Jest test suite - Code coverage reportTotal: 40.32%Your code coverage diff: 0.00% ▴ ✅ All code changes are covered |
Dedupe Hub App | Unittest test suite - Code coverage reportTotal: 55.73%Your code coverage diff: 0.00% ▴ ✅ All code changes are covered |
Contricleaner App | Unittest test suite - Code coverage reportTotal: 98.75%Your code coverage diff: 0.00% ▴ ✅ All code changes are covered |
Countries App | Unittest test suite - Code coverage reportTotal: 100%Your code coverage diff: 0.00% ▴ ✅ All code changes are covered |
Django App | Unittest test suite - Code coverage reportTotal: 81.87%Your code coverage diff: 0.00% ▴ ✅ All code changes are covered |



Backmerge PR of #864
Follow-up fix for OSDEV-2318
Disable
prevent_destroyfor msk cluster to unblockPre-proddeletion.