You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This doesn't work but should: vmInstance, err := vm.NewVirtualMachine(ctx, vmName, &vmArgs, pulumi.Provider(provider), pulumi.IgnoreChanges([]string{"disks[0].fileFormat", "disks[*].speed"}))
The text was updated successfully, but these errors were encountered:
this is an interesting one because the provider just wraps the upstream Terraform provider and lets Pulumi handle everything else. there's no logic w.r.t. ignoreChanges or similar.
can you verify this works for other providers?
Hello,
I've noticed that even though pulumi it self should support this, the proxmoxve doesn't seem to be supporting the wildcard for ignoreChanges.
This works:
vmInstance, err := vm.NewVirtualMachine(ctx, vmName, &vmArgs, pulumi.Provider(provider), pulumi.IgnoreChanges([]string{"disks[0].fileFormat", "disks[0].speed"}))
This doesn't work but should:
vmInstance, err := vm.NewVirtualMachine(ctx, vmName, &vmArgs, pulumi.Provider(provider), pulumi.IgnoreChanges([]string{"disks[0].fileFormat", "disks[*].speed"}))
The text was updated successfully, but these errors were encountered: