diff --git a/bin/tf b/bin/tf index 8ddff89..665e42b 100755 --- a/bin/tf +++ b/bin/tf @@ -101,6 +101,8 @@ def exec_tf_command( if command == "init": shutil.rmtree(os.path.join(path, ".terraform"), ignore_errors=True) + # Respect whatever is set, but default to true if it isn't set + command_env.setdefault("TF_PLUGIN_CACHE_MAY_BREAK_DEPENDENCY_LOCK_FILE", "true") if command == "import": response = input( diff --git a/terrawrap/version.py b/terrawrap/version.py index 117ad72..e1642c8 100644 --- a/terrawrap/version.py +++ b/terrawrap/version.py @@ -1,4 +1,4 @@ """Place of record for the package version""" -__version__ = "0.9.29" +__version__ = "0.9.30" __git_hash__ = "GIT_HASH"