Move cross_az_attach above deprecated params

Commit 958c5b2f35 accidentally added the
new cross_az_attach parameter in the deprecated sections. This commit
just moves it up so it's clear this parameter is not deprecated.

Change-Id: Ib32dc7f21c916190f952c1ae5a353434a6969616
This commit is contained in:
James Slagle 2019-04-16 09:59:49 -04:00
parent afbf93c2eb
commit 366aaf2273
1 changed files with 5 additions and 5 deletions

View File

@ -394,6 +394,10 @@
# If unable to do so, will use "127.0.0.1". # If unable to do so, will use "127.0.0.1".
# Defaults to $::os_service_default. # Defaults to $::os_service_default.
# #
# [*cross_az_attach*]
# (optional) Allow attach between instance and volume in different availability zones.
# Defaults to $::os_service_default
#
# DEPRECATED PARAMETERS # DEPRECATED PARAMETERS
# #
# [*placement_database_connection*] # [*placement_database_connection*]
@ -421,10 +425,6 @@
# (optional) Use IPv6 or not. # (optional) Use IPv6 or not.
# Defaults to undef # Defaults to undef
# #
# [*cross_az_attach*]
# (optional) Allow attach between instance and volume in different availability zones.
# Defaults to $::os_service_default
#
class nova( class nova(
$ensure_package = 'present', $ensure_package = 'present',
$database_connection = undef, $database_connection = undef,
@ -513,6 +513,7 @@ class nova(
$disk_allocation_ratio = $::os_service_default, $disk_allocation_ratio = $::os_service_default,
$purge_config = false, $purge_config = false,
$my_ip = $::os_service_default, $my_ip = $::os_service_default,
$cross_az_attach = $::os_service_default,
# DEPRECATED PARAMETERS # DEPRECATED PARAMETERS
$placement_database_connection = undef, $placement_database_connection = undef,
$placement_slave_connection = undef, $placement_slave_connection = undef,
@ -520,7 +521,6 @@ class nova(
$image_service = undef, $image_service = undef,
$notify_on_api_faults = undef, $notify_on_api_faults = undef,
$use_ipv6 = undef, $use_ipv6 = undef,
$cross_az_attach = $::os_service_default,
) inherits nova::params { ) inherits nova::params {
include ::nova::deps include ::nova::deps