A water-utility team needs every Oracle Function in one application to read the same Object Storage bucket name without rebuilding images when the name changes. Where should that value live?
Select an answer to reveal the explanation.
Short Explanation
Treat config like a sticky note on the office door, not paint mixed into the wall. Application or function key-value config arrives as environment variables so bucket names and connect strings change without a new image build.
Full Explanation
Oracle Functions custom configuration lets you define key-value pairs on the application (visible to every function) or on a single function. Values arrive as environment variables and through the FDK context. The serially encoded configuration object must stay at or under 4 KB. This follows twelve-factor style config-in-the-environment and avoids baking environment-specific values into the image.