9ce538b6ff
On python <3.4 the separator for json.dump() defaulted to (', ', ': ') which may cause trailing whitespaces in rendered JSON files when used with indent. This change sets the separator to (',', ': ') to prevent trailing whitespaces with older versions of python. See https://docs.python.org/2/library/json.html#basic-usage Change-Id: I81fabd54659bdb28da43fb4900f19dd94a70336c |
||
---|---|---|
.. | ||
install.d | ||
element-deps | ||
README.rst |
A hook which helps write JSON files to disk for configuration or use with ad-hoc scripts. The data files are written to the named file location for each section listed under 'config'.
Multiple JSON files can be written out in this manner.
Example:
- JsonConfig:
type: OS::Heat::StructuredConfig properties: group: json-file config: /tmp/foo: - bar - bar2
- This would write out a JSON files at
-
/tmp/foo containing a JSON representation of ['bar', 'bar2'].