In this task, you will create a user account for Dylan Williams.
In the drop-down menu in the upper-left corner of the Cloud Shell pane, select Bash, and, when prompted, click Confirm.
In the Bash session within the Cloud Shell pane, run the following to to identify the name of your Azure AD tenant:
DOMAINNAME=$(az ad signed-in-user show --query 'userPrincipalName' | cut -d '@' -f 2 | sed 's/\"//')
In the Bash session within the Cloud Shell pane, run the following to create a user, Dylan Williams. Use yourdomain.
az ad user create --display-name "Dylan Williams" --password "Pa55w.rd1234" --user-principal-name Dylan@$DOMAINNAME
In the Bash session within the Cloud Shell pane, run the following to list Azure AD user accounts (the list should include user accounts of Joseph, Isabel, and Dylan)
az ad user list --output table