mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-04 21:00:39 -04:00
11 lines
158 B
HCL
11 lines
158 B
HCL
variable "state_filename" {
|
|
type = string
|
|
default = "local-state.tfstate"
|
|
}
|
|
|
|
terraform {
|
|
backend "_test_local" {
|
|
path = var.state_filename
|
|
}
|
|
}
|