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:
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: