2017-05-04 20:03:57 +02:00
|
|
|
provider "exact" {
|
2020-03-20 18:59:59 +01:00
|
|
|
version = "1.2.3"
|
2017-05-04 20:03:57 +02:00
|
|
|
}
|
|
|
|
|
2020-03-20 18:59:59 +01:00
|
|
|
provider "greater-than" {
|
|
|
|
version = ">= 2.3.3"
|
2017-05-04 20:03:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
provider "between" {
|
2020-06-12 01:40:53 +02:00
|
|
|
# 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"
|
2017-05-04 20:03:57 +02:00
|
|
|
}
|