Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform_compliance/common/readable_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __call__(self, parser, namespace, values, option_string=None):
else:
plan_lines = plan_lines[0]

data = json.loads(plan_lines)
data = json.loads(plan_lines, parse_float=str) # Preserve version strings like "1.30"

# Write the changed plan file to the same file, since it is used in other places.
if file_change_required:
Expand Down