This message was deleted.
# azure
s
This message was deleted.
b
hi @most-mouse-38002 do you currently already do this with the ARM templates? You can specify addons using
addonProfiles
https://www.pulumi.com/registry/packages/azure-native/api-docs/containerservice/managedcluster/#addonprofiles_nodejs
m
Oh, neat. I will try this right now. We are actually using Terraform right now, but they don’t support it. I did fork that and made it work with Terraform so I assume Pulumi is using the same APIs so this should work.
b
@most-mouse-38002 actually no - the azure-native provider is populated directly from the Azure API. so we have 100% coverage of the azure API
m
@billowy-army-68599 awesome, this seems to work perfectly. Thank you!
Copy code
AddonProfiles: containerservice.ManagedClusterAddonProfileMap{
				"ACCSGXDevicePlugin": &containerservice.ManagedClusterAddonProfileArgs{
					Config: pulumi.StringMap{
						"ACCSGXQuoteHelperEnabled": pulumi.String("true"),
					},
					Enabled: pulumi.Bool(true),
				},
			},
❤️ 1