Επεξεργασία

Κοινή χρήση μέσω


Advanced Microsoft Entra Verified ID setup

Advanced Verified ID setup is the classic way of setting up Verified ID where you, as an admin, manually configure various components. This includes setting up Azure Key Vault, registering your decentralized ID, and verifying your domain. The advanced setup gives you full control over the configuration process, ensuring that every detail meets your organization's specific requirements. It's ideal for enterprises that need a customized setup.

Advanced setup involves the following steps:

  1. Configure Azure Key Vault: Securely store and manage the keys used for signing and verifying credentials.
  2. Register Decentralized ID: Create and register your decentralized identifier (DID) to establish a trusted identity.
  3. Verify Domain: Ensure your domain is correctly linked to your DID, providing a trusted source for your credentials.

In this tutorial, you learn how to:

  • Create an Azure Key Vault instance.
  • Configure your the Verified ID service using the advanced setup.
  • Register an application in Microsoft Entra ID.

The following diagram illustrates the Verified ID architecture and the component you configure.

Diagram that illustrates the Microsoft Entra Verified ID architecture.

Prerequisites

Create a key vault

Note

The Azure Key Vault that you use to setup the Verified ID service must have Key Vault Access Policy for its Permission model. There is currently a limitation if the Key Vault has Azure role-based access control

Azure Key Vault is a cloud service that enables the secure storage and access management of secrets and keys. The Verified ID service stores public and private keys in Azure Key Vault. These keys are used to sign and verify credentials.

If you don't have an Azure Key Vault instance available, follow these steps to create a key vault using the Azure portal. The Azure Key Vault that you use to set up the Verified ID service must have Key Vault Access Policy for its Permission model instead of Azure role-based access control.

Note

By default, the vault's creator account is the only one with access. The Verified ID service needs access to the key vault. You must authenticate your key vault, allowing the account used during configuration to create and delete keys. The account used during configuration also requires permissions to sign so that it can create the domain binding for Verified ID. If you use the same account while testing, modify the default policy to grant the account sign permission, in addition to the default permissions granted to vault creators.

Manage access to the key vault

Before you can set up Verified ID, you need Key Vault access. Provide access permissions to your key vault for both the Verified ID administrator account, and for the Request Service API principal that you created.

After you create your key vault, Verifiable Credentials generates a set of keys used to provide message security. These keys are stored in Key Vault. You use a key set for signing verifiable credentials.

Set up Verified ID

Screenshot that shows how to set up Verifiable Credentials.

To set up Verified ID, follow these steps:

  1. Sign in to the Microsoft Entra admin center as a Global Administrator.

  2. From the left menu, select Overview under Verified ID.

  3. From the middle menu, select Setup tab and then select Advanced Setup.

  4. Select Configure organization settings

  5. Set up your organization by providing the following information:

    1. Organization name: Enter a name to reference your business within Verified IDs. Your customers don't see this name.

    2. Trusted domain: Enter a domain name. The name you specify is added to a service endpoint in your decentralized identity (DID) document. The domain is what binds your DID to something tangible that the user might know about your business. Microsoft Authenticator and other digital wallets use this information to validate that your DID is linked to your domain. If the wallet can verify the DID, it displays a verified symbol. If the wallet can't verify the DID, it informs the user that the credential issuer is an organization it couldn't validate.

      Important

      The domain can't be a redirect. Otherwise, the DID and domain can't be linked. Make sure to use HTTPS for the domain. For example: https://did.woodgrove.com. Please also ensure that the Key Vault's Permission Model is set to Vault Access Policy.

    3. Key vault: Select the key vault that you created earlier.

  6. Select Save.

    Screenshot that shows how to set up Verifiable Credentials first step.

Register an application in Microsoft Entra ID

Your application needs to get access tokens when it wants to call into Microsoft Entra Verified ID so it can issue or verify credentials. To get access tokens, you have to register an application and grant API permission for the Verified ID Request Service. For example, use the following steps for a web application:

  1. Sign in to the Microsoft Entra admin center as a Global Administrator.

  2. Select Microsoft Entra ID.

  3. Under Applications, select App registrations > New registration.

    Screenshot that shows how to select a new application registration.

  4. Enter a display name for your application. For example: verifiable-credentials-app.

  5. For Supported account types, select Accounts in this organizational directory only (Default Directory only - Single tenant).

  6. Select Register to create the application.

    Screenshot that shows how to register the verifiable credentials app.

Grant permissions to get access tokens

In this step, you grant permissions to the Verifiable Credentials Service Request Service principal.

To add the required permissions, follow these steps:

  1. Stay in the verifiable-credentials-app application details page. Select API permissions > Add a permission.

    Screenshot that shows how to add permissions to the verifiable credentials app.

  2. Select APIs my organization uses.

  3. Search for the Verifiable Credentials Service Request service principal and select it.

    Screenshot that shows how to select the service principal.

  4. Choose Application Permission, and expand VerifiableCredential.Create.All.

    Screenshot that shows how to select the required permissions.

  5. Select Add permissions.

  6. Select Grant admin consent for <your tenant name>.

You can choose to grant issuance and presentation permissions separately if you prefer to segregate the scopes to different applications.

Screenshot that shows how to select granular permissions for issuance or presentation.

Register decentralized ID and verify domain ownership

After Azure Key Vault is set up, and the service have a signing key, you must complete step 2 and 3 in the setup.

Screenshot that shows how to set up Verifiable Credentials step 2 and 3.

  1. Sign in to the Microsoft Entra admin center as a Global Administrator.
  2. Select Verified ID.
  3. From the left menu, select Overview.
  4. From the middle menu, select Register decentralized ID to register your DID document, as per instructions in article How to register your decentralized ID for did:web. You must complete this step before you can continue to verify your domain.
  5. From the middle menu, select Verify domain ownership to verify your domain, as per instructions in article Verify domain ownership to your Decentralized Identifier (DID)

Once that you have successfully completed the verification steps, and have green checkmarks on all three steps, you are ready to continue to the next tutorial.

Next steps