Complete the command to mark a Terraform resource as needing replacement.
terraform [1] aws_instance.exampleThe terraform taint command marks a resource as needing replacement on the next apply.
Complete the command to remove the taint mark from a Terraform resource.
terraform [1] aws_instance.exampleThe terraform untaint command removes the taint mark so the resource is not replaced.
Fix the error in the command to taint a resource named 'web_server'.
terraform [1] web_serverThe correct command to mark 'web_server' for replacement is terraform taint web_server.
Fill both blanks to complete the command that taints a resource and then applies changes.
terraform [1] aws_instance.example && terraform [2]
First, terraform taint marks the resource for replacement. Then, terraform apply applies the changes.
Fill all three blanks to untaint a resource, refresh state, and then apply changes.
terraform [1] aws_instance.example && terraform [2] && terraform [3]
First, terraform untaint removes the taint mark. Then, terraform refresh updates the state. Finally, terraform apply applies any changes.