Advertisement
ioggstream

waitcondition_handle_vs_update_waitcondition_handle

Sep 4th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. heat_template_version: newton
  2. resources:
  3. # Provide a curl CLI command to the cloud-init script. Called on completion
  4. # to indicate the status of the cloud-init process
  5. update_wait_handle:
  6. type: OS::Heat::UpdateWaitConditionHandle
  7.  
  8. wait_handle:
  9. type: OS::Heat::WaitConditionHandle
  10.  
  11.  
  12. outputs:
  13. wch:
  14. value: {get_resource: wait_handle}
  15.  
  16. wch_url:
  17. value: {get_attr: [wait_handle, curl_cli]}
  18.  
  19.  
  20. uwch:
  21. value: {get_resource: update_wait_handle}
  22.  
  23.  
  24. uwch_show:
  25. value: {get_attr: [update_wait_handle, show]}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement