- The Command Line
- Basic CLI Features
- Command: taint
Command: taint
The tofu taint
command informs OpenTofu that a particular object has
become degraded or damaged. OpenTofu represents this by marking the
object as "tainted" in the OpenTofu state, and OpenTofu will
propose to replace it in the next plan you create.
This command is deprecated, we recommend using the -replace
option with tofu apply
instead (details below).
Recommended Alternative
We recommend using the -replace
option with tofu apply
to force OpenTofu to replace an object even though there are no configuration changes that would require it.
We recommend the -replace
option because the change will be reflected in the OpenTofu plan, letting you understand how it will affect your infrastructure before you take any externally-visible action. When you use tofu taint
, other users could create a new plan against your tainted object before you can review the effects.
Usage
The address
argument is the address of the resource to mark as tainted.
The address is in
the resource address syntax,
as shown in the output from other commands, such as:
aws_instance.foo
aws_instance.bar[1]
aws_instance.baz[\"key\"]
(quotes in resource addresses must be escaped on the command line, so that they will not be interpreted by your shell)module.foo.module.bar.aws_instance.qux
Use of variables in module sources,
backend configuration,
or encryption block
requires assigning values to root module variables
when running tofu taint
.
This command accepts the following options:
-
-allow-missing
- If specified, the command will succeed (exit code 0) even if the resource is missing. The command might still return an error for other situations, such as if there is a problem reading or writing the state. -
-lock=false
- Disables OpenTofu's default behavior of attempting to take a read/write lock on the state for the duration of the operation. -
-lock-timeout=DURATION
- Unless locking is disabled with-lock=false
, instructs OpenTofu to retry acquiring a lock for a period of time before returning an error. The duration syntax is a number followed by a time unit letter, such as "3s" for three seconds. -
-var 'NAME=VALUE'
- Sets a value for a single input variable declared in the root module of the configuration. Use this option multiple times to set more than one variable. Refer to Input Variables on the Command Line for more information. -
-var-file=FILENAME
- Sets values for potentially many input variables declared in the root module of the configuration, using definitions from a "tfvars" file. Use this option multiple times to include values from more than one file.
There are several other ways to set values for input variables in the root
module, aside from the -var
and -var-file
options. Refer to
Assigning Values to Root Module Variables for more information.
For configurations using the cloud
backend or the remote
backend only, tofu taint
also accepts the option
-ignore-remote-version
.
For configurations using
the local
backend only,
tofu taint
also accepts the legacy options
-state
, -state-out
, and -backup
.