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.
2 parents ebd5ba2 + 85cd567 commit 976d5aaCopy full SHA for 976d5aa
terrafile/__init__.py
@@ -65,7 +65,7 @@ def get_module_path(terrafile_path, terrafile):
65
def read_terrafile(path):
66
try:
67
with open(path) as open_file:
68
- terrafile = yaml.load(open_file)
+ terrafile = yaml.load(open_file, Loader=yaml.FullLoader)
69
if not terrafile:
70
raise ValueError('{} is empty'.format(path))
71
except IOError as error:
0 commit comments