opentofu/command/test-fixtures/init-get-providers/main.tf
James Bardin 2994c6ac5d add init getPlugin test
add a mock plugin getter, and test that we can fetch requested version
of the plugins.
2017-06-09 14:03:59 -07:00

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