mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 07:33:32 -06:00
cb2e9119aa
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package depsfile
|
|
|
|
// LockFilePath is the path, relative to a configuration's root module
|
|
// directory, where OpenTofu expects to find the dependency lock file for
|
|
// that configuration.
|
|
//
|
|
// This file is intended to be kept in version control, so it lives directly
|
|
// in the root module directory. The ".terraform" prefix is intended to
|
|
// suggest that it's metadata about several types of objects that ultimately
|
|
// end up in the .terraform directory after running "tofu init".
|
|
const LockFilePath = ".terraform.lock.hcl"
|
|
|
|
// DevOverrideFilePath is the path, relative to a configuration's root module
|
|
// directory, where OpenTofu will look to find a possible override file that
|
|
// represents a request to temporarily (within a single working directory only)
|
|
// use specific local directories in place of packages that would normally
|
|
// need to be installed from a remote location.
|
|
const DevOverrideFilePath = ".terraform/dev-overrides.hcl"
|