|
136 | 136 | # (optional) Enable or not Nova API v3
|
137 | 137 | # Defaults to false
|
138 | 138 | #
|
| 139 | +# [*secure_proxy_ssl_header*] |
| 140 | +# (optional) The HTTP Header that will be used to determine |
| 141 | +# what the original request protocol scheme was, even if |
| 142 | +# it was hidden by an SSL termination proxy. |
| 143 | +# Defaults to $::os_service_default |
| 144 | +# |
139 | 145 | # [*default_floating_pool*]
|
140 | 146 | # (optional) Default pool for floating IPs
|
141 | 147 | # Defaults to 'nova'
|
|
206 | 212 | $instance_name_template = undef,
|
207 | 213 | $fping_path = '/usr/sbin/fping',
|
208 | 214 | $service_name = $::nova::params::api_service_name,
|
| 215 | + $secure_proxy_ssl_header = $::os_service_default, |
209 | 216 | # DEPRECATED PARAMETER
|
210 | 217 | $conductor_workers = undef,
|
211 | 218 | $ec2_listen_port = undef,
|
|
292 | 299 | }
|
293 | 300 |
|
294 | 301 | nova_config {
|
295 |
| - 'DEFAULT/api_paste_config': value => $api_paste_config; |
296 |
| - 'DEFAULT/enabled_apis': value => $enabled_apis_real; |
297 |
| - 'DEFAULT/volume_api_class': value => $volume_api_class; |
298 |
| - 'DEFAULT/osapi_compute_listen': value => $api_bind_address; |
299 |
| - 'DEFAULT/metadata_listen': value => $metadata_listen; |
300 |
| - 'DEFAULT/metadata_listen_port': value => $metadata_listen_port; |
301 |
| - 'DEFAULT/osapi_compute_listen_port': value => $osapi_compute_listen_port; |
302 |
| - 'DEFAULT/osapi_volume_listen': value => $api_bind_address; |
303 |
| - 'DEFAULT/osapi_compute_workers': value => $osapi_compute_workers; |
304 |
| - 'DEFAULT/metadata_workers': value => $metadata_workers; |
305 |
| - 'DEFAULT/use_forwarded_for': value => $use_forwarded_for; |
306 |
| - 'DEFAULT/default_floating_pool': value => $default_floating_pool; |
307 |
| - 'DEFAULT/fping_path': value => $fping_path; |
308 |
| - 'osapi_v3/enabled': value => $osapi_v3; |
| 302 | + 'DEFAULT/api_paste_config': value => $api_paste_config; |
| 303 | + 'DEFAULT/enabled_apis': value => $enabled_apis_real; |
| 304 | + 'DEFAULT/volume_api_class': value => $volume_api_class; |
| 305 | + 'DEFAULT/osapi_compute_listen': value => $api_bind_address; |
| 306 | + 'DEFAULT/metadata_listen': value => $metadata_listen; |
| 307 | + 'DEFAULT/metadata_listen_port': value => $metadata_listen_port; |
| 308 | + 'DEFAULT/osapi_compute_listen_port': value => $osapi_compute_listen_port; |
| 309 | + 'DEFAULT/osapi_volume_listen': value => $api_bind_address; |
| 310 | + 'DEFAULT/osapi_compute_workers': value => $osapi_compute_workers; |
| 311 | + 'DEFAULT/metadata_workers': value => $metadata_workers; |
| 312 | + 'DEFAULT/use_forwarded_for': value => $use_forwarded_for; |
| 313 | + 'DEFAULT/default_floating_pool': value => $default_floating_pool; |
| 314 | + 'DEFAULT/fping_path': value => $fping_path; |
| 315 | + 'osapi_v3/enabled': value => $osapi_v3; |
| 316 | + 'oslo_middleware/secure_proxy_ssl_header': value => $secure_proxy_ssl_header; |
309 | 317 | }
|
310 | 318 |
|
311 | 319 | if ($neutron_metadata_proxy_shared_secret){
|
|
0 commit comments