Hello,
I’m trying to ignore specific attribute “eagerly_scrub” on each disk of vsphere_virtual_machine resource. I’have tried many things but nothing seems to work.
List of all my tries :
lifecycle {
ignore_changes = [
disk["eagerly_scrub"],
]
}
lifecycle {
ignore_changes = [
disk["all.eagerly_scrub"],
]
}
lifecycle {
ignore_changes = [
disk["*.eagerly_scrub"],
]
}
lifecycle {
ignore_changes = [
disk["0.eagerly_scrub"],
disk["1.eagerly_scrub"],
]
}
lifecycle {
ignore_changes = [
disk["disk0.eagerly_scrub"],
disk["disk1.eagerly_scrub"],
]
}
Do you have an idea of how to do it ? Or do i need to create a issue for this feature ?