Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/terraform/v1.13.x/docs/language/block/moved.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This section provides details about the fields you can configure in the `moved`

The `moved` block specifies the previous address and the new address for the resource. The following table describes the arguments you can set in the `moved` block.

| Arbument | Description | Type | Required |
| Argument | Description | Type | Required |
| --- | --- | --- | --- |
| `from` | Specifies a resource's previous address. The syntax allows Terraform to select modules, resources, and resources inside child modules. | string | required |
| `to` | Specifies the new address to relocate the resource to. The syntax allows Terraform to select modules, resources, and resources inside child modules. | string | required |
Expand All @@ -50,4 +50,4 @@ moved {
from = aws_instance.a
to = aws_instance.b
}
```
```
Loading