I am running a VM on Azure that has IIS and two apps. The first is "Default Web Site" and is the one I am working on now. I bought a SSL cert from GoDaddy for the domain. (subdomain.site.com) and generated the cert from Azure KeyVault. I recieved the cert back and added it to the Vault successfully. I used the script below to add KeyVault to my server via the Azure CLI.
# Start the deployment
az vm extension set --name "KeyVaultForWindows" `
--publisher Microsoft.Azure.KeyVault `
--resource-group "<resourcegroup>" `
--vm-name "<vmName>" `
--settings '{\"secretsManagementSettings\": { \"pollingIntervalInS\": \"3600\", \"certificateStoreName\": \"MY\", \"certificateStoreLocation\": \"LocalMachine\", \"observedCertificates\": [\" MY CERT LINK\", \" <observedCert2> \"] }}'
I filled in roughly what I used MY for cert store and LocalMachine for location. I then added the link to the end of the cert that was added successfully earlier.
This ran successfully with no errors. I now want to add this SSL cert to the bindings on IIS. After spending awhile trying to complete this I still have not been able to. The cert is on Vault and is valid. The vault seems to be linked with the cert in the settings and seems to be valid however there is still no cert showing up for the bindings
