0 votes
in Terraform by
What do you understand by terraform backend?

1 Answer

0 votes
by

Each Terraform configuration can specify a backend, which defines two main things:

  • Where operations are performed 
  • Where the state is stored (Terraform keeps track of all the resources created in a state file)
...