Azure - yibinericxia/documents GitHub Wiki

Intro

Azure AD (Entra ID)

Azure Active Directory, now named as Entra Id, is the cloud-based identity and access management service.

SSO

Azure Service Bus

Queues

It is a multi-tenant message broker which offers Platform-as-a-Service (PaaS) so you do not need to worry about the lower infrastructure issues. For basic message concepts, please see more details in message queue.

Topics

You can use topics to send/receive messages in publish/subscribe pattern. It delivers the message in pull mode.

Azure Storage

Blob Storage Types

  • Block Blob
  • Append Blob
  • Page Blob

Authentication

Azure recommends to use passwordless approach of DefaultAzureCredential instead of account access key to avoid key exposure.

Azure Deployment Automation

Templates

  • ARM

It is legacy template in JSON format

  • Bicep

It is a new format which is simple and easy-to-maintain. During deployment, it will be transpiled into ARM template.

  • Migration from ARM to Bicep use bicep cli

File Storage

References