Method: CloudFormation::Template#render

Defined in:
lib/cloud_formation/template.rb

#render(pretty: false, indentation: 2) ⇒ Object



22
23
24
# File 'lib/cloud_formation/template.rb', line 22

def render pretty: false, indentation: 2
  pretty ? JSON.pretty_generate(serialize, indent: " "*indentation) : serialize.to_json
end