terraform/internal/command/testdata/import-provider-remote-state/main.tf

13 lines
137 B
HCL

terraform {
backend "local" {
path = "imported.tfstate"
}
}
provider "test" {
foo = "bar"
}
resource "test_instance" "foo" {
}