We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c50211 commit 85cd567Copy full SHA for 85cd567
terrafile/__init__.py
@@ -58,7 +58,7 @@ def get_terrafile_path(path):
58
def read_terrafile(path):
59
try:
60
with open(path) as open_file:
61
- terrafile = yaml.load(open_file)
+ terrafile = yaml.load(open_file, Loader=yaml.FullLoader)
62
if not terrafile:
63
raise ValueError('{} is empty'.format(path))
64
except IOError as error:
0 commit comments