A botanical public weather HTTP function should be callable without a key, while a blood-bank donor-update HTTP function must require the function key. Which Functions configuration distinguishes those endpoints?
Select an answer to reveal the explanation.
Short Explanation
Authorization level is the door lock on an HTTP trigger—Anonymous means open garden gate; Function means you need the key. Entra ID is a bigger identity story (Domain 3); start here with the trigger’s authLevel for these two city endpoints.
Full Explanation
Azure Functions HTTP triggers support authorization levels such as Anonymous, Function, and Admin. Anonymous allows calls without a function key; Function requires a function- or host-level key. Entra ID authentication is a separate Domain 3 concern and is not the first answer for this create/configure skill. CORS does not replace function keys.