Fix wrong default value of use_simple_tenant_usage

The actual option in horizon was set to True by default before [1] was
merged. This restores the old default value.

[1] 54a31c91fd

Change-Id: Iaa64ba9d475b0dbfcbd53af8b777ef94cae85c0b
This commit is contained in:
Takashi Kajinami 2023-08-31 22:09:40 +09:00
parent 3e4422f427
commit b9ddda15f4
1 changed files with 2 additions and 2 deletions

View File

@ -235,7 +235,7 @@
#
# [*use_simple_tenant_usage*]
# (optional) Use SimpleTenantUsage nova API in the usage overview.
# (Defaults to undef)
# Defaults to true.
#
# [*configure_apache*]
# (optional) Configure Apache for Horizon. (Defaults to true)
@ -615,7 +615,7 @@ class horizon(
Hash $keystone_options = {},
Hash $neutron_options = {},
Hash $instance_options = {},
Boolean $use_simple_tenant_usage = false,
Boolean $use_simple_tenant_usage = true,
Stdlib::Absolutepath $file_upload_temp_dir = '/tmp',
Optional[Stdlib::Absolutepath] $policy_files_path = undef,
Optional[Hash[String, String]] $policy_files = undef,