13 lines
137 B
Terraform
13 lines
137 B
Terraform
|
terraform {
|
||
|
backend "local" {
|
||
|
path = "imported.tfstate"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "test" {
|
||
|
foo = "bar"
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "foo" {
|
||
|
}
|