I want to generate a certificate in an Azure KeyVault using Bicep. It's simple and straight forward to do in the Web UI and using azure-cli: https://learn.microsoft.com/en-us/cli/azure/keyvault/certificate?view=azure-cli-latest#az-keyvault-certificate-create
But how do I do that with Bicep?
The only thing I found is this resource symbolicname 'Microsoft.Web/certificates@2022-03-01'
but this actually wants to create a managed certificate and wants to bind it to some service, which I do not require.
How can I only generate the certificate in the key vault?