Skip to content

Commit

Permalink
terraform/rootmodule: add 0.14 plugin lock file path (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored Nov 11, 2020
1 parent 1a65fe5 commit ee745bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/terraform/rootmodule/plugin_lock_file.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ import (

func pluginLockFilePaths(dir string) []string {
return []string{
// Terraform >= 0.14
filepath.Join(dir,
".terraform.lock.hcl",
),
// Terraform >= v0.13
filepath.Join(dir,
".terraform",
Expand Down

0 comments on commit ee745bc

Please sign in to comment.