Merge "Adding undercloud ceilometer"
[apex-tripleo-heat-templates.git] / ssl-source.yaml
1 Description: 'ssl-source: SSL endpoint metadata for openstack'
2 Parameters:
3   SSLCertificate:
4     Default: ''
5     Description: If set, the contents of an SSL certificate .crt file for encrypting SSL endpoints.
6     Type: String
7     NoEcho: true
8   SSLKey:
9     Default: ''
10     Description: If set, the contents of an SSL certificate .key file for encrypting SSL endpoints.
11     Type: String
12     NoEcho: true
13 Resources:
14   SSLConfig:
15     Type: OS::Heat::StructuredConfig
16     Properties:
17       config:
18         stunnel:
19           cert:
20             get_input: ssl_certificate
21           key:
22             get_input: ssl_key
23           ports:
24            - name: 'ec2'
25              accept: 13773
26              connect: 8773
27            - name: 'image'
28              accept: 13292
29              connect: 9292
30            - name: 'identity'
31              accept: 13000
32              connect: 5000
33            - name: 'network'
34              accept: 13696
35              connect: 9696
36            - name: 'compute'
37              accept: 13774
38              connect: 8774
39            - name: 'swift-proxy'
40              accept: 13080
41              connect: 8080
42            - name: 'cinder'
43              accept: 13776
44              connect: 8776