github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/depsfile/testdata/locks-files/valid-provider-locks.hcl (about)

     1  
     2  provider "terraform.io/test/version-only" {
     3    version = "1.0.0"
     4  }
     5  
     6  provider "terraform.io/test/version-and-constraints" {
     7    version = "1.2.0"
     8    constraints = "~> 1.2"
     9  }
    10  
    11  provider "terraform.io/test/all-the-things" {
    12    version = "3.0.10"
    13    constraints = ">= 3.0.2"
    14  
    15    hashes = [
    16      "test:placeholder-hash-1",
    17      "test:placeholder-hash-2",
    18      "test:placeholder-hash-3",
    19    ]
    20  }