2020-09-04 03:35:31 +02:00
|
|
|
|
|
|
|
provider "terraform.io/test/version-only" {
|
|
|
|
version = "1.0.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
provider "terraform.io/test/version-and-constraints" {
|
|
|
|
version = "1.2.0"
|
|
|
|
constraints = "~> 1.2"
|
|
|
|
}
|
|
|
|
|
|
|
|
provider "terraform.io/test/all-the-things" {
|
|
|
|
version = "3.0.10"
|
|
|
|
constraints = ">= 3.0.2"
|
|
|
|
|
2020-09-23 20:52:31 +02:00
|
|
|
hashes = [
|
|
|
|
"test:placeholder-hash-1",
|
|
|
|
"test:placeholder-hash-2",
|
|
|
|
"test:placeholder-hash-3",
|
|
|
|
]
|
2020-09-04 03:35:31 +02:00
|
|
|
}
|