-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstackDemo.yaml
More file actions
36 lines (36 loc) · 863 Bytes
/
Copy pathstackDemo.yaml
File metadata and controls
36 lines (36 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
heat_template_version: 2015-04-30
parameters:
network_name:
type: string
label: network name
resources:
NF1_Infra:
type: OS::Heat::ResourceGroup
properties:
count: 2
resource_def:
type: OS::Nova::Server
properties:
name: nf1vm_%index%
flavor: m1.tiny
image: cirros
networks:
- network: { get_param: network_name }
key_name: mykey
security_groups:
- default
NF2_Infra:
type: OS::Heat::ResourceGroup
properties:
count: 2
resource_def:
type: OS::Nova::Server
properties:
name: nf2vm%index%
flavor: m1.tiny
image: cirros
networks:
- network: { get_param: network_name }
key_name: mykey
security_groups:
- default