Advertisement
Guest User

Before

a guest
Jul 13th, 2015
34
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: '2014-10-16'
  2. resources:
  3.   net1:
  4.     type: OS::Neutron::Net
  5.   subnet1:
  6.     type: OS::Neutron::Subnet
  7.     properties:
  8.       cidr: 10.0.0.0/16
  9.       enable_dhcp: false
  10.       ip_version: 4
  11.       network_id: {get_resource: net1}
  12.   port1:
  13.     type: OS::Neutron::Port
  14.     properties:
  15.       fixed_ips:
  16.       - ip_address: 10.0.0.10
  17.         subnet_id: {get_resource: subnet1}
  18.       network_id: {get_resource: net1}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement