Hello. I am working with setting up infrastructur...
# azure
w
Hello. I am working with setting up infrastructure in Azure using Go. I have recently not had any issues. However, now, when I am running pulumi up, the update for Azure Public IP addresses just hangs. See screenshot. On a side note, every time I do any update, the tags for all resources needs to be updated. Anyone have any thoughts on this? Thanks!
e
Are you running with --refresh? Are your tags lists always constructed in the same order?
w
This is how I have the tags declared:
Copy code
var DefaultTags = pulumi.StringMap{
  "Tag1": pulumi.String("value"), 
}
Then in each resource, I use:
Tags: DefaultTags
I am running with --refresh right now and seeing the same result. The real issue is why the updates for the Azure Public IP are hanging. Because of that, it is not continuing to update other resources, my VM Scale Set.
Also, note that I am running pulumi v3.189.0
e
I'd raise this on the azure repo, I haven't heard of any issues around IPs not updating
Also can't see why tags would diff if it's just one tag unchanging, worth raising an issue about that as well