You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/test/with_state_key/main.tf

12 lines
187 B

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
}