heat-templates/hot/software-config/elements/heat-config-json-file
ricolin 20fb0efa11 Deprecate hooks in heat-templates
We already create repository `heat-agents` for hooks and will keep
maintain hooks there, so we should deprecate all hooks in
heat-templates and plan to remove it in futuer.

Change-Id: Ie2d89d5bab7db2bc6a2e171dc455098811519440
2018-02-07 16:50:34 +08:00
..
install.d Deprecate hooks in heat-templates 2018-02-07 16:50:34 +08:00
README.rst Add a hook to help write json files 2017-01-01 14:59:00 -05:00
element-deps Add a hook to help write json files 2017-01-01 14:59:00 -05:00

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'].