added ssl_* config options to config.yaml

This commit is contained in:
Edward Hope-Morley 2015-04-02 10:13:42 +01:00
parent f384b435e9
commit 05bd411320
1 changed files with 19 additions and 0 deletions

View File

@ -44,3 +44,22 @@ options:
description: |
By default, all services will log into their corresponding log files.
Setting this to True will force all services to log to the syslog.
# Per-service HTTPS configuration.
ssl_cert:
type: string
default:
description: |
SSL certificate to install and use for API ports. Setting this value
and ssl_key will enable reverse proxying, point Heat's entry in the
Keystone catalog to use https, and override any certficiate and key
issued by Keystone (if it is configured to do so).
ssl_key:
type: string
default:
description: SSL key to use with certificate specified as ssl_cert.
ssl_ca:
type: string
default:
description: |
SSL CA to use with the certificate and key provided - this is only
required if you are providing a privately signed ssl_cert and ssl_key.