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

« Previous Version 10 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>


  2. 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.



  3. 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 URL are used.



  4. 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>


    The service principal can now be used with SoftNAS.



  • No labels