Search code examples
azureazure-devopsterraformazure-logic-appsazure-rm

Azure Logic App: Terraform not detecting changes


Terraform is not detecting changes made manually in logic app workflow after its deployment. Is it me or this is not yet possible with terraform?

The goal would be to detect them and redeploy if necessary


Solution

  • Terraform uses state to keep track of the state of your cloud resources.

    It does not query your cloud resources each time. Therefore, any changed made manually will not be overwritten at once.

    If you make a change to your Terraform template, it will be reapplied and the manual changes will be lost.

    https://www.terraform.io/language/state/purpose