mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
* feat: add state_alias for test run blocks * fix: move `state_alias` to run block + rename to `state_key` * docs: add state_key changelog entry * docs: add state_key in run block documentation * Revert "docs: add state_key in run block documentation" This reverts commitccccf62a76. * Revert "docs: add state_key changelog entry" This reverts commit86e2ad8dc3.
11 lines
187 B
HCL
11 lines
187 B
HCL
resource "test_resource" "test_id_moved" {
|
|
}
|
|
|
|
output "test_id" {
|
|
value = test_resource.test_id_moved.id
|
|
}
|
|
|
|
moved {
|
|
from = test_resource.test_id
|
|
to = test_resource.test_id_moved
|
|
}
|