Let's look at some of the Azure services that we can use to implement Serverless applications:
- Serverless computing on AWS: Azure functions are event-driven, Serverless compute functions that can scale on demand. We need to pay only for the resources we consume. The corresponding AWS service is AWS Lambda.
- Access management:
Azure Active Directory is Microsoft's identity and access management service. The corresponding AWS service is IAM.
- Resource provisioning and management:
The Azure Resource Manager service enables us to define the infrastructure and dependencies for our app in a single declarative template and then repeatedly deploy the app using the template. The corresponding AWS service is CloudFormation.
- Simple ...