mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-07 01:00:44 -05:00
12 lines
146 B
HCL
12 lines
146 B
HCL
provider "exact" {
|
|
version = "1.2.3"
|
|
}
|
|
|
|
provider "greater_than" {
|
|
version = ">= 2.3.3"
|
|
}
|
|
|
|
provider "between" {
|
|
version = "> 1.0.0 , < 3.0.0"
|
|
}
|