Hello guys, I just found that issue on github: <ht...
# azure
b
Hello guys, I just found that issue on github: https://github.com/pulumi/pulumi-azure-native/issues/4418 . Is that true that it's not possible right now to do it ? I looked at the Azure Managed Cluster pulumi doc and I wasn't able to find how to enable Node Auto Provisioning on my AKS cluster. Thanks by advance !
s
Short answer: It's been added to the provider. https://www.pulumi.com/registry/packages/azure-native/api-docs/containerservice/managedcluster/#managedclusternodeprovisioningprofile Here's how I figured it out: • If there's an ARM example in the Azure docs, it exists in some API for that service. The example for auto provisioning example had
2025-05-01
as the API version: https://learn.microsoft.com/en-us/azure/aks/use-node-auto-provisioning?pivots=arm • I then looked at the registry page for ManagedCluster: https://www.pulumi.com/registry/packages/azure-native/api-docs/containerservice/managedcluster It's at
2025-09-01
, so it's already in the "default" API. If it was in an API version after what we have as the default for ManagedCluster, I would've recommended you generate a local SDK for the API version you need (the entire list of available versions is in the Pulumi Registry page): https://www.pulumi.com/registry/packages/azure-native/version-guide/#accessing-any-api-version-via-local-packages (Giving you the long version so that you can figure this out for any resource in Azure going forward.)
šŸ™Œ 1
Slightly longer answer than the short answer: If you can find an ARM example for it, we either do support it already, or we can make a relatively quick fix to support it.
b
Thanks a lot ! I gues I haven't read the doc correctly šŸ™‚ I'll try it ASAP.
s
Let me know if there's any way we can make this clearer in the docs: What info you would've wanted, and where you would've expected to find it.