I have a resource (Kubernetes Container Cluster) t...
# general
t
I have a resource (Kubernetes Container Cluster) that won’t allow two properties to update at the same time (node count and version) as the api rejects them as mutually exclusive changes. This is a problem in Terraform as well that I haven’t quite figured a good solution for. Is there a good way in Pulumi to model updating a resource, then coming back in and updating that resource again as a separate task and not compound the changes to that resource with both updates?
w
This sounds like a bug in the upstream Terraform resource provider - would be worth making sure there is an issue tracking it. I don’t have any great workarounds to suggest - other than making sure the two updates are deployed separately which is definitely not ideal. There are more complicated things you could try - like using a get method to look up the existing resource and then conditionally setting the new value for the conflicting property on whether the existing and new value of the other property match. That may well be more complicated than it’s worth though. What is the resource in question?
t
It’s an Azure managed KubernetesCluster (AKS)