An Apache Spark-based analytics platform optimized for Azure.
looks like a new azure account root account will now get created with #EXT and hence we need to create a new user logged as root user. Once done we need to grant subscription to the user as well as the Global administrator role to the user. Granting subscription was a bit challenging and I finally ended up using the CLI to successfully grant the subscription, without granting the subscription this new user will not be able to create any new resources as it is marked as reader and to create a resource this user must be either an Owner, or Contributor.
Once the global administrator role as well as subscription was added was able to create the resource successfully.
CLI Command
az role assignment create \
--assignee <object-id-of-new-user> \
--role Owner \
--scope /subscriptions/<subscription-id>
example:
az role assignment create \
--assignee 3232e3bf-62be-4729-562c5d59dd76 \
--role Owner \
--scope /subscriptions/7fe2ead8-090e-4912-d6baf3100b72 the output of the above command will be in a JSON format.