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/configs/testdata/invalid-modules/import-to-moved-from/main.tf

13 lines
158 B

import {
id = "foo/bar"
to = local_file.foo_bar
}
moved {
from = local_file.foo_bar
to = local_file.bar_baz
}
resource "local_file" "bar_baz" {
}