Home > Back-end >  Azure Key Vault - unable to find/select Front Door as Principle for access policy
Azure Key Vault - unable to find/select Front Door as Principle for access policy

Time:12-08

I'm following this tutorial to use a custom SSL certificate in Front Door from Key Vault ...

key vault front door missing from access policy

Any ideas on how to fix this? I need to give Front Door an ssl certificate for an apex domain

CodePudding user response:

I tried to reproduce the same issue in my environment and got the below results

To add the custom domain and name we need the keyvault

For that I have created the keyvault while creating I have followed the below steps

Azure front door import custom certified only from the keyvault

First I have registered the azure front door service principal using the below script

New-AzADServicePrincipal -ApplicationId “XXXXXXXXXXX”

enter image description here

Go-TO Portal search for Keyvault create new keyvault In the first page give the name & region click on next to go to the access policy to new policy

In the certificate permissions select get , in the secret get & list & authorities

enter image description here

When I click on principal I am able to see azure front door in the list as shown

enter image description here

  • Related