An organization wants to automate a cybersecurity incident response workflow. The workflow must:
1. Execute a custom C# script to perform complex cryptographic validation on the incoming event payload.
2. Orchestrate a sequence of downstream actions, including creating a support ticket in a third-party service management portal and sending a Microsoft Teams notification, utilizing a graphical designer with pre-built connectors.
Which two Azure serverless compute services should the organization select to implement this solution? (Select two.)
- Azure Logic AppsAnswer
- Azure FunctionsAnswer
- CAzure App Service
- DAzure Virtual Machines
Answer
Azure Logic Apps and Azure Functions
The correct answer consists of Azure Logic Apps and Azure Functions. Azure Logic Apps provides the designer-first serverless orchestration tool to build workflows visually with pre-built connectors. Azure Functions provides the code-first serverless platform needed to execute the custom C# script for cryptographic validation without managing any server infrastructure.
Step-by-Step Solution
Key Concept
Distinguishing between Azure Functions (code-first serverless compute) and Azure Logic Apps (designer-first serverless orchestration).
Estimated Time:1m 30s