class TerraformLandscape::TerraformPlan
def display_attribute(
def display_attribute( resource, change_color, attribute_name, attribute_value, attribute_value_indent_amount ) attribute_value_indent = ' ' * attribute_value_indent_amount if resource[:change] == :~ display_modified_attribute(change_color, attribute_name, attribute_value, attribute_value_indent, attribute_value_indent_amount) else display_added_or_removed_attribute(change_color, attribute_name, attribute_value, attribute_value_indent, attribute_value_indent_amount) end end