fix example

This commit is contained in:
github-actions[bot]
2024-10-05 09:42:43 +00:00
committed by lonegunmanb
parent 0b92e926ee
commit 2d44157e36
2 changed files with 12 additions and 1 deletions

View File

@ -49,9 +49,15 @@ resource "azurerm_windows_virtual_machine" "dsvm" {
admin_password = local.dsvm_host_password
provision_vm_agent = true
vm_agent_platform_updates_enabled = false
timeouts {
create = "60m"
delete = "2h"
}
lifecycle {
ignore_changes = [
vm_agent_platform_updates_enabled,
]
}
}