Files
opentf/command/testdata/taint-check-required-version/main.tf
Alisdair McDiarmid 14a233b019 command: Taint should respect required_version
Despite not requiring the configuration for any other reason, the taint
subcommand should not execute if the required_version constraints cannot
be met. Doing so can result in an undesirable state file upgrade.
2020-09-22 17:33:09 -04:00

8 lines
94 B
HCL

terraform {
required_version = "~> 0.9.0"
}
terraform {
required_version = ">= 0.13.0"
}