Files
opentf/command/testdata/init-get-providers/main.tf
Martin Atkins 17feb2abfc vendor: go get github.com/apparentlymart/go-versions@v1.0.0
This new version permits omitting the space between the operator and the
boundary in a ruby-style version constraint, like ">1.0.0" instead of
"> 1.0.0".
2020-06-12 08:45:14 -07:00

15 lines
281 B
HCL

provider "exact" {
version = "1.2.3"
}
provider "greater-than" {
version = ">= 2.3.3"
}
provider "between" {
# The second constraint here intentionally has
# no space after the < operator to make sure
# that we can parse that form too.
version = "> 1.0.0 , <3.0.0"
}