This message was deleted.
# azure
s
This message was deleted.
a
Have you tried adding this paramer to the pulumi.ResourceOptions ignore_changes parameter?
👍 1
c
☝️ that. Also it's not a bug. Pulumi is correctly reporting the diff in your state with what is in Azure. Since
earliestRestoreState
isn't a property you'd ever provide as an input (and probably can't anyway) it's within expectations that you'd want to use the
ignoreChanges
option
b
Thanks for pointing that out, @adventurous-butcher-54166 @clever-sunset-76585. That makes total sense and seems to be the option that we were looking for! 🙏 We'll try the
ignoreChanges
approach.
Update:
ignoreChanges
only applies to inputs. Since
earliestRestoreDate
is an output, it is useless here.