2020-10-27 02:15:36 +01:00
|
|
|
---
|
|
|
|
layout: "docs"
|
|
|
|
page_title: "Manipulating State - Terraform CLI"
|
|
|
|
---
|
|
|
|
|
|
|
|
# Manipulating Terraform State
|
|
|
|
|
2021-01-15 23:13:53 +01:00
|
|
|
Terraform uses [state data](/docs/language/state/index.html) to remember which
|
2020-10-27 02:15:36 +01:00
|
|
|
real-world object corresponds to each resource in the configuration;
|
|
|
|
this allows it to modify an existing object when its resource declaration
|
|
|
|
changes.
|
|
|
|
|
|
|
|
Terraform updates state automatically during plans and applies. However, it's
|
|
|
|
sometimes necessary to make deliberate adjustments to Terraform's state data,
|
|
|
|
usually to compensate for changes to the configuration or the real managed
|
|
|
|
infrastructure.
|
|
|
|
|
|
|
|
Terraform CLI supports several workflows for interacting with state:
|
|
|
|
|
|
|
|
- [Inspecting State](/docs/cli/state/inspect.html)
|
|
|
|
- [Forcing Re-creation (Tainting)](/docs/cli/state/taint.html)
|
|
|
|
- [Moving Resources](/docs/cli/state/move.html)
|
|
|
|
- Importing Pre-existing Resources (documented in the
|
|
|
|
[Importing Infrastructure](/docs/import/index.html) section)
|
|
|
|
- [Disaster Recovery](/docs/cli/state/recover.html)
|
|
|
|
|
|
|
|
~> **Important:** Modifying state data outside a normal plan or apply can cause
|
|
|
|
Terraform to lose track of managed resources, which might waste money, annoy
|
|
|
|
your colleagues, or even compromise the security of your operations. Make sure
|
|
|
|
to keep backups of your state data when modifying state out-of-band.
|