Good day all, is it possible to inject a custom CA...
# azure
r
Good day all, is it possible to inject a custom CA via pulumi now? we are using AKS and the way we are injecting it atm is via az cli. i've seen related issue opened https://github.com/pulumi/pulumi-azure-native/issues/1813
Copy code
"securityProfile": {
                    "workloadIdentity": {
                        "enabled": true
                    },
                    "customCATrustCertificates": [
m
Good question @red-airline-54646 I looked into this and, as far as I can tell,
pulumi-azure-native
still doesn’t expose a first-class property for
securityProfile.customCATrustCertificates
on AKS. That issue you linked is the right one to track, and adding a 👍 or comment there definitely helps with prioritization.
👍 1
You could call out to Azure CLI from your Pulumi program using
pulumi.Command
that might be one work around.
👍 1
r
Thanks Adam. appreciate the suggestion, will try that one.