Skip to content

Commit

Permalink
AT-10360 No Longer Delete Terraform Lock Files
Browse files Browse the repository at this point in the history
  • Loading branch information
jconstance-amplify committed Sep 28, 2023
1 parent 71326c8 commit 68250b1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions bin/tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ def exec_tf_command(

if command == "init":
shutil.rmtree(os.path.join(path, ".terraform"), ignore_errors=True)
lock_file_path = os.path.join(path, ".terraform.lock.hcl")
if os.path.exists(lock_file_path):
os.remove(lock_file_path)

if command == "import":
response = input(
Expand Down
2 changes: 1 addition & 1 deletion terrawrap/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Place of record for the package version"""

__version__ = "0.9.27"
__version__ = "0.9.28"
__git_hash__ = "GIT_HASH"

0 comments on commit 68250b1

Please sign in to comment.