Advertisement
Guest User

Untitled

a guest
Aug 18th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.43 KB | None | 0 0
  1. heat_template_version: 2015-04-30
  2.  
  3. description: Template that creates the Test System
  4.  
  5. parameters:
  6.   public_network:
  7.     type: string
  8.     label: Public network name or ID
  9.     description: The public network to attach system to.
  10.     default: public-net-01
  11.  
  12. resources:
  13.   network:
  14.     type: private_network.yml
  15.     properties:
  16.       public_network: { get_param: public_network }
  17.       cidr: 192.168.0.0/24
  18.       dns: 8.8.8.8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement