mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 11:25:16 +08:00
fb9b106cde
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
733 B
733 B
terraform untaint
Remove the tainted status from a resource instance. See also:
terraform taint. More information: https://developer.hashicorp.com/terraform/cli/commands/untaint.
- Remove tainted status from a resource:
terraform untaint {{resource_type.resource_name[instance_index]}}
- Remove tainted status, even if the resource is missing:
terraform untaint -allow-missing {{resource_type.resource_name[instance_index]}}
- Remove tainted status without acquiring a state lock:
terraform untaint -lock=false {{resource_type.resource_name[instance_index]}}
- Remove tainted status with a custom lock timeout:
terraform untaint -lock-timeout={{duration}} {{resource_type.resource_name[instance_index]}}