Advertisement
Guest User

Basic HEAT

a guest
Dec 2nd, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.53 KB | None | 0 0
  1. heat_template_version: 2013-05-23
  2.  
  3. resources:
  4.   compute_instance:
  5.     type: "OS::Nova::Server"
  6.     properties:
  7.       flavor: m1.medium
  8.       image: Test2_converted
  9.       name: test-wp-automated
  10.       networks:
  11.       - network: 8603a548-d019-4ef1-b286-2898acff7d24
  12.       user_data_format: RAW
  13.       user_data: |
  14.        #cloud-config
  15.         final_message: "The system is finally up, after $UPTIME seconds"
  16.  
  17. outputs:
  18.   compute_public_ip:
  19.     description: Public IP...
  20.     value: { get_attr: [compute_instance, first_address] }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement