A municipal Functions application sets REGION=us-ashburn-1 for all handlers, but the GIS export function must use a different region key. How should that override be applied?
Select an answer to reveal the explanation.
Short Explanation
Shared application config is the default office policy; a function-level sticky note with the same key wins for that one desk. Override on the function instead of forking a whole new application.
Full Explanation
When a function-level parameter uses the same key as an application-wide parameter, the function-level value wins for that function. Use application config for values every handler shares and function config for the one handler that differs. Forking a second application just to change one key is unnecessary.