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
terraform plan -refresh=false
No changes. Infrastructure is up-to-date.
This means that Terraform did not detect any differences between your
configuration and real physical resources that exist. As a result, no
actions need to be performed.
As you can see, the disk values are not set on the tfstate. Hence recreating it again. Manually changing the tfstate to have the correct values fixes this. There is a problem on getting those values at the end of the ressource creation. Qemu-agents is enabled and working since I can get the ip addresses etc...
Workaround
Use the lifecycle management tool from terraform
lifecycle {
ignore_changes = [
disk,
]
}
Best regards,
The text was updated successfully, but these errors were encountered:
Describe the bug
Terraform apply on already applied ressources, destroyed them and applied them again. This happens on a windows machines templaces.
To Reproduce
Expected behavior
Screenshots
As you can see, the disk values are not set on the tfstate. Hence recreating it again. Manually changing the tfstate to have the correct values fixes this. There is a problem on getting those values at the end of the ressource creation. Qemu-agents is enabled and working since I can get the ip addresses etc...
Workaround
Use the lifecycle management tool from terraform
Best regards,
The text was updated successfully, but these errors were encountered: