Enabling HTTPS and adding a certificate from my keyvault works fine using the portal (i.e. I have the access rights needed).
I'm trying to do the same using az but can't find an explanation on how to do:
az network front-door frontend-endpoint enable-https --resource-group $RG \
--front-door-name $AFD \
--name $name \
--vault-id $kv_id \
--certificate-source AzureKeyVault \
--secret-name $NN \
--secret-version $XX
Especially, how do I retrieve $NN and $XX using az keyvault ... ?