Files
opentf/command/testdata/init-get-providers/main.tf
Kristin Laemmert 4f141ae365 rename provider-specific functions (#24417)
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.
2020-03-20 13:59:59 -04:00

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"
}