mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-28 23:01:32 -05:00
missingPlugins was hard-coded to work only with provider plugins, so I renamed it to clarify the usage. Also renamed a test provider from greater_than to greater-than as the underscore is an invalid provider name character and this will become a hard error in the near future.
12 lines
149 B
HCL
12 lines
149 B
HCL
provider "exact" {
|
|
version = "1.2.3"
|
|
}
|
|
|
|
provider "greater-than" {
|
|
version = ">= 2.3.3"
|
|
}
|
|
|
|
provider "between" {
|
|
version = "> 1.0.0 , < 3.0.0"
|
|
}
|