AAD Contd…
Azure Interfaces
- To interact with Azure we have 3 popular interfaces
- Portal
- Command Line:
- Azure CLI
- Azure Powershell
- SDK: By Programming languages
- REST API
Azure CLI
- This is a simple command line tool which is cross platform and works from anywhere
- Installation Refer Here
- To Sign in Refer Here
- To sign in
az loginand signoutaz logout - Azure CLI commands
az <service> [<sub-command>] <action> --arg1 value1 ... -arg2 value2
- Example
az group list
- Refer Here for the reference docs
- Lets create a custom role in Azure using CLI Refer Here
- We have uploaded the Azure custom rbac role from cli and updated the assignable scope Refer Here
Azure Powershell
- This is collection of cmd lets from microsoft Azure to interact using powershell
- Refer Here
- To sign in
Connect-AzAccountand signoutDisconnect-AzAccount - Try Creating a custom role in Azure Powershell Refer Here
