BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
12 / 18 · Module 15 — Deployment and Operations · filtered: cheatsheet← 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.