Role should default to no external SSL termination

Also, variable naming should match what is in
Id87fab39c929e0860abbc3755ad386aa6893b151

Change-Id: Iadf64979d01d15f459b8fcdd92a60b207745c006
This commit is contained in:
Travis Truman 2016-03-04 17:28:33 -05:00
parent 9d517ca0e9
commit efbb8c288f
2 changed files with 4 additions and 2 deletions

View File

@ -164,8 +164,10 @@ nova_console_ssl_dir: "/etc/nova/ssl"
nova_console_ssl_cert: "{{ nova_console_ssl_dir }}/nova-console.pem"
nova_console_ssl_key: "{{ nova_console_ssl_dir }}/nova-console.key"
# Set to true when terminating SSL/TLS at a load balancer
nova_external_ssl: false
# External SSL forwarding proto
nova_ssl_external: true
nova_secure_proxy_ssl_header: HTTP_X_FORWARDED_PROTO
## Nova global config

View File

@ -13,7 +13,7 @@ state_path = {{ nova_system_home_folder }}
rootwrap_config = /etc/nova/rootwrap.conf
service_down_time = 120
{% if nova_ssl_external | bool %}
{% if nova_external_ssl | bool %}
secure_proxy_ssl_header = {{ nova_secure_proxy_ssl_header }}
{% endif %}