allinwonder/cfn2dsl

Multiline property values aren't indented

cmaxwellau opened this issue · 2 comments

    Property("Parameters", {
  "_b_tree_bitmap_plans"        => "FALSE",
  "compatible"                  => "12.1.0.2.0",

should be:

    Property("Parameters", {
        "_b_tree_bitmap_plans"        => "FALSE",
        "compatible"                  => "12.1.0.2.0",
sktan commented

@cmaxwellau this should be fixed in the latest release, let me know if you are still experiencing indentation issues.

Works beautifully. Cheers!