bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
Cloud Run functions can be triggered in response to changes in
Firebase Remote Config in the
same Google Cloud project as the function. This makes it possible to change
the behavior and appearance of your app without publishing an app update.
Event types
Firebase Remote Config can trigger functions in response to the
remoteconfig.update event.
Event Type
Trigger
remoteconfig.update
Triggered when the remote config template is updated.
The registered name of the Cloud Run function you are deploying.
This can either be the name of a function in your
source code, or an arbitrary string. If FUNCTION_NAME is an
arbitrary string, then you must include the
--entry-point flag.
--entry-point ENTRY_POINT
The name of a function or class in your source code. Optional, unless
you did not use FUNCTION_NAME
to specify the
function in your source code to be executed during deployment. In that
case, you must use --entry-point to supply the name of the
executable function.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["Firebase Remote Config triggers allow Cloud Run functions to respond to changes in Firebase Remote Config, enabling dynamic app behavior and appearance updates without app store releases."],["The `remoteconfig.update` event type triggers functions whenever the Remote Config template is updated, providing real-time adaptability."],["Event data for Remote Config updates includes `updateType`, `updateOrigin`, and `versionNumber`, offering detailed information about the configuration change."],["Beta triggers for Remote Config may have evolving formats for CloudEvents, particularly in the `Source`, `Subject`, and data payload, so adaptations may be needed."],["Deploying functions with Firebase Remote Config triggers requires specifying `google.firebase.remoteconfig.update` as the trigger event, alongside the function name, entry point, and runtime environment."]]],[]]