Azure CLI & Powershell Configuration
- To Configure Login with Azure CLI
az login
- To configure login with Azure Powershell
Connect-AzAccount
Creating Azure Credentials for Applications using Azure SDK
- To give an access to an application code to control azure resources we need to create a service principal and give them RBAC
az ad sp create-for-rbac --role "Contributor"
- Refer Here for the usage of the CLI
Azure AD B2B (Business to Business)
- Inviting external user to your own tenant as guest users letting use azure with their existing credentials.
Azure B2C (Business to consumer)
- If you are developing customer facings, Azure AD B2C is all about using Azure AD as the full-featured Customer Identity and Access Management
Configuring Microsoft Active Directory
- We will try to create a Windows Server in Azure which simulates on-premise Active Directory Domain Controller.
- In this we will be creating few users and groups
- Setup:
- Lets create a Windows Server and Configure it as Domain Controller
- Follow the instructions as done in the class room
