github.com/pulumi/terraform@v1.4.0/pkg/depsfile/paths.go (about)

     1  package depsfile
     2  
     3  // LockFilePath is the path, relative to a configuration's root module
     4  // directory, where Terraform expects to find the dependency lock file for
     5  // that configuration.
     6  //
     7  // This file is intended to be kept in version control, so it lives directly
     8  // in the root module directory. The ".terraform" prefix is intended to
     9  // suggest that it's metadata about several types of objects that ultimately
    10  // end up in the .terraform directory after running "terraform init".
    11  const LockFilePath = ".terraform.lock.hcl"
    12  
    13  // DevOverrideFilePath is the path, relative to a configuration's root module
    14  // directory, where Terraform will look to find a possible override file that
    15  // represents a request to temporarily (within a single working directory only)
    16  // use specific local directories in place of packages that would normally
    17  // need to be installed from a remote location.
    18  const DevOverrideFilePath = ".terraform/dev-overrides.hcl"