BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
54 / 81 · Module 15 — Deployment and Operations · filtered: interview← prev⊞ allnext →

15.39Feature flags

Sometimes you want to deploy code without immediately enabling behavior.

Example:

features:
  newCustomerMapping: false

Then enable in QA/prod according to controlled rollout.

Good for:

risky integration changes
new downstream system
migration
gradual rollout

But don't turn configuration into an impossible matrix of hidden behavior.