mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
13 lines
137 B
Terraform
13 lines
137 B
Terraform
|
terraform {
|
||
|
backend "local" {
|
||
|
path = "imported.tfstate"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "test" {
|
||
|
foo = "bar"
|
||
|
}
|
||
|
|
||
|
resource "test_instance" "foo" {
|
||
|
}
|