12 lines
127 B
Terraform
12 lines
127 B
Terraform
|
|
||
|
terraform {
|
||
|
required_version = ">= 0.7.0, <0.13.0"
|
||
|
|
||
|
backend "local" {
|
||
|
path = "foo.tfstate"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
provider "test" {
|
||
|
}
|