Secure .NET microservices with Azure Container Apps and DAPR
The concept of microservices sounds fairly easy. And it is. Until you start adding requirements. For example, here are some common real-life scenarios:
- We want to authenticate users with SSO (OAuth2/OpenID Connect). And we don’t want to store access tokens in the front end anymore because it’s 2022 and we’re worried about the third-party cookie problem.
- We want to scale out and in instead of scaling up and down. And we want to scale automatically.
- We want to have…