Jump to: navigation, search

Talk:Heat/hot-software-config-WIP

I think we need to define the generic software resource, in the wiki page is a good description on how to use a derived version.

Regardless whether we want it inline or in a component template, we need to set out the fields/format.

(inline)::

 x:
   type: software_conf
   properties:
     parameters:
       bla:
         type: String
     outputs: [foo, fee]
     content: |
       #!/bin/this_tool
     content_handler: this_tool_agent
     signal_handler: cfn-signal

(included)::

 y:
   type: software_conf
   properties:
     template: ./conf/mysql.yaml
./conf/mysql.yaml
 parameters:
   bla:
     type: String
 content: |
   #!/bin/this_tool
 content_handler: this_tool_agent
 signal_handler: cfn-signal
 outputs: [foo, fee]