diff options
author | Brad P. Crochet <brad@redhat.com> | 2016-05-20 08:16:03 -0400 |
---|---|---|
committer | Brad P. Crochet <brad@redhat.com> | 2016-05-20 08:16:03 -0400 |
commit | 73a687263c38e85344bbab3a3536873f8285322d (patch) | |
tree | 419afcacf92f4d7011c1636ad618eeda3e36abbf | |
parent | be81eae8c6b3c99b5fd6ac39f5202130d524c299 (diff) |
Change default CloudFormation ssl port to 13005
The current default of 13800 is a bit out of line with the other Heat
SSL ports. This makes it a more sane default of 13005.
Change-Id: Ic9aa71bfc80ca5fdb3b3c48dc55be7b98cf22ada
-rw-r--r-- | manifests/loadbalancer.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/loadbalancer.pp b/manifests/loadbalancer.pp index a13b151..2926e49 100644 --- a/manifests/loadbalancer.pp +++ b/manifests/loadbalancer.pp @@ -265,7 +265,7 @@ # 'heat_api_port' (Defaults to 8004) # 'heat_api_ssl_port' (Defaults to 13004) # 'heat_cfn_port' (Defaults to 8000) -# 'heat_cfn_ssl_port' (Defaults to 13800) +# 'heat_cfn_ssl_port' (Defaults to 13005) # 'heat_cw_port' (Defaults to 8003) # 'heat_cw_ssl_port' (Defaults to 13003) # 'ironic_api_port' (Defaults to 6385) @@ -361,7 +361,7 @@ class tripleo::loadbalancer ( heat_api_port => 8004, heat_api_ssl_port => 13004, heat_cfn_port => 8000, - heat_cfn_ssl_port => 13800, + heat_cfn_ssl_port => 13005, heat_cw_port => 8003, heat_cw_ssl_port => 13003, ironic_api_port => 6385, |