kolla/demos/heat/steak-rg.yaml
Steven Dake 335f2e2a54 Add a demo using Heat
Add a demo using heat

Change-Id: Ife5f94a338e8723eb300f5c41d53d750e19700d5
2015-04-27 02:17:15 -07:00

27 lines
686 B
YAML

heat_template_version: 2013-05-23
parameters:
public_net_id:
type: string
description: uuid of a network to use for floating ip addresses
demo_net_id:
type: string
description: uuid of a subnet on the fixed network to use for creating ports
demo_subnet_id:
type: string
description: uuid of a subnet on the fixed network to use for creating ports
resources:
steak:
type: OS::Heat::ResourceGroup
properties:
count: 20
resource_def:
type: steak.yaml
properties:
public_net_id: {get_param: public_net_id}
demo_net_id: {get_param: demo_net_id}
demo_subnet_id: {get_param: demo_subnet_id}