Resource for managing instance signals.
The main points of this resource are:
Name |
Description |
---|---|
signal_transport |
How the client will signal the wait condition.
String value expected. Updates cause replacement. Defaults to "TOKEN_SIGNAL". Allowed values: TOKEN_SIGNAL, NO_SIGNAL |
Name |
Description |
---|---|
curl_cli |
Convenience attribute, provides curl CLI command prefix, which can be used for signaling handle completion or failure when signal_transport is set to TOKEN_SIGNAL. You can signal success by adding –data-binary {"status": "SUCCESS"} , or signal failure by adding –data-binary {"status": "FAILURE"}. This attribute is set to None for all other signal transports. |
endpoint |
Endpoint/url which can be used for signaling handle when signal_transport is set to TOKEN_SIGNAL. None for all other signal transports. |
token |
Token for stack-user which can be used for signaling handle when signal_transport is set to TOKEN_SIGNAL. None for all other signal transports. |
heat_template_version: 2014-10-16 ... resources: ... the_resource: type: OS::Heat::WaitConditionHandle properties: signal_transport: String