diff options
Diffstat (limited to 'ssl-source.yaml')
-rw-r--r-- | ssl-source.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ssl-source.yaml b/ssl-source.yaml index 26f2f72c..1d6ac246 100644 --- a/ssl-source.yaml +++ b/ssl-source.yaml @@ -10,16 +10,23 @@ Parameters: Description: If set, the contents of an SSL certificate .key file for encrypting SSL endpoints. Type: String NoEcho: true + SSLCACertificate: + Default: '' + Description: If set, the contents of an SSL certificate authority file. + Type: String Resources: SSLConfig: Type: OS::Heat::StructuredConfig Properties: + group: os-apply-config config: stunnel: cert: get_input: ssl_certificate key: get_input: ssl_key + cacert: + get_input: ssl_ca_certificate ports: - name: 'ec2' accept: 13773 |