@Morgan Harris For this purpose there are Directory Roles. To see all available roles, run below cmdlets:
-
Connect-msolservice
-
Get-MsolRole
You can run below cmdlet to assign Directory Writers role to specific user.
Add-MsolRoleMember -RoleName "Directory Writers" -RoleMemberObjectId
You can assign Roles from Azure Portal > Azure AD > Roles and Administrators as well. But all roles are not exposed in portal. If you cannot find the desired role in portal, use the above cmdlets.
-----------------------------------------------------------------------------------------------------------
Please "mark as answer" or "vote as helpful" wherever the information provided helps you to help others in the community.