Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

  1. Create the App registration

az ad app create --display-name <displayname> --homepage <home page url> --identifier-uris <Service Prinipal logon url> --password <Service Principal logon password>

 


 

  1. Create the Service Principal and link it to the app

az ad sp create --id <app id | identifier uri >

 

In this example the identifier uri is used.


 

 

 

 

  1. Assign a role to the App

az role assignment create --role <subscription role> --assignee <app id | identifier uri>

 

In this example the built-in role of Owner and identifier uri are used.


  1. As an optional step login via the service principal can be validated

 

az login –service-principal -u <identifier uri> -p <password> -t <tenant id | domain>


 

 

  1. The service principal can now be used with SoftNAS


 

  • No labels