A developer copies a local Fn Project func.yaml that includes a triggers HTTP section into an OCI Functions deploy for a city payments helper. The deploy fails. What is the fix?
Select an answer to reveal the explanation.
Short Explanation
The local Fn “triggers” stanza is like a doorbell that OCI Functions does not install. Take it out of func.yaml and put HTTP entry on API Gateway—or use signed invoke—instead.
Full Explanation
OCI Functions does not support an Fn Project triggers section in func.yaml; deployment fails until that block is removed. HTTP access to a function on OCI is provided by an API Gateway route (or a signed invoke), not by an Fn HTTP trigger declaration.