I am getting to grips with Terraform, primarily for deploying Azure resources.
My question is, let's say I use Azure to create a resource group, and some resources like a web app with some settings. Now if I change a setting in the tf file, e.g. the app service plan or whatever, on the next time I run terraform, does it check settings and remediate to what is in the file?
E.g. an app service is deployed with a plan (say X), the plan is changed to Y, perhaps an unauthorised change, now when the tf file runs again, with the file specifying an app service with X, would Terraform update the app service to plan X?
Thanks!