mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-02 09:00:19 -05:00
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".
15 lines
281 B
HCL
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"
|
|
}
|