https://pulumi.com logo
#azure
Title
a

adorable-airline-89422

06/09/2023, 11:06 AM
Does anyone know if there are plans to add support for clientCertificateMode in Container App Ingress, and managed certificates in Container App Environments?
m

melodic-tomato-39005

06/09/2023, 3:04 PM
Hi Torgeir, regarding the managed certs there is an existing issue that is blocked upstream by Azure. Regarding clientCertificateMode, do you have a link to Azure docs or the API spec?
m

melodic-tomato-39005

06/09/2023, 6:00 PM
Looks like we do support
clientCertificateMode
, it’s just in a newer API version. The default API version of the Pulumi provider is 2022-03-01 for Microsoft.App but you can import 2022-10-01 instead. Depending on your programming language it will look something like this, in C#: instead of
using <http://Pulumi.AzureNative.App|Pulumi.AzureNative.App>
you’ll use
using Pulumi.AzureNative.App.V20221001
.
a

adorable-airline-89422

06/09/2023, 6:41 PM
oh, very cool! Thank you, I’ll have a go at it on Monday 🙂