Is it possible to get a certificate from Key Vault in a kubernetes.io/tls secret type? For now, I have a PFX certificate in a Key Vault. When I reference it in the AzureAppConfigurationProvider resource, I get it in a Opaque secret type, in a binary format (base64 encoded). I would like to get my certificate in a kubernetes.io/tls secret type (in a PEM format) to be able to use it with ingress-nginx for example.
This way, I could replace all my SecretProviderClass resources by only one AzureAppConfigurationProvider to get all my configuration (configuration and secrets), for each of my applications. I find that AzureAppConfigurationProvider is more comfortable and easy to use than SecretProviderClass.
Is it possible to get a certificate from Key Vault in a
kubernetes.io/tlssecret type? For now, I have a PFX certificate in a Key Vault. When I reference it in theAzureAppConfigurationProviderresource, I get it in aOpaquesecret type, in a binary format (base64 encoded). I would like to get my certificate in akubernetes.io/tlssecret type (in a PEM format) to be able to use it with ingress-nginx for example.This way, I could replace all my
SecretProviderClassresources by only oneAzureAppConfigurationProviderto get all my configuration (configuration and secrets), for each of my applications. I find thatAzureAppConfigurationProvideris more comfortable and easy to use thanSecretProviderClass.