Question: 1/50
You develop an HTTP-triggered Azure Function that reads an environment variable named "ApiBaseUrl". In Azure, the function throws an error because the variable is null. You confirm the value exists in the Function App configuration. What should you do to make the value available to the function code at runtime?
Add the key/value to the Function App Application settings and read it from environment variables in code
Add the key/value to host.json and read it using IConfiguration
Add the key/value to function.json and read it from binding data
Add the key/value to local.settings.json and redeploy the function