-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsingle_vm_floating_ip_heat.yaml
73 lines (66 loc) · 2.09 KB
/
single_vm_floating_ip_heat.yaml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
heat_template_version: 2013-05-23
description: >
HOT template to deploy one servers into an existing neutron tenant network and
assign floating IP addresses to each server so it is routable from the
public network.
parameters:
key_name:
type: string
description: Name of keypair to assign to server
image:
type: string
description: Name of image to use for server
flavor:
type: string
description: Flavor to use for server
public_net_id:
type: string
description: >
ID of public network for which floating IP address will be allocated
private_net_id:
type: string
description: ID of private network into which server get deployed
private_subnet_id:
type: string
description: ID of private sub network into which server get deployed
resources:
server1:
type: OS::Nova::Server
properties:
name: Server1
image: { get_param: image }
flavor: { get_param: flavor }
key_name: { get_param: key_name }
networks:
- port: { get_resource: server1_port }
server1_port:
type: OS::Neutron::Port
properties:
network_id: { get_param: private_net_id }
fixed_ips:
- subnet_id: { get_param: private_subnet_id }
security_groups: [{ get_resource: server_security_group }]
server1_floating_ip:
type: OS::Neutron::FloatingIP
properties:
floating_network_id: { get_param: public_net_id }
port_id: { get_resource: server1_port }
server_security_group:
type: OS::Neutron::SecurityGroup
properties:
description: Add security group rules for server
name: security-group
rules:
- remote_ip_prefix: 0.0.0.0/0
protocol: tcp
port_range_min: 22
port_range_max: 22
- remote_ip_prefix: 0.0.0.0/0
protocol: icmp
outputs:
server1_private_ip:
description: IP address of server1 in private network
value: { get_attr: [ server1, first_address ] }
server1_public_ip:
description: Floating IP address of server1 in public network
value: { get_attr: [ server1_floating_ip, floating_ip_address ] }