#
# [*auth_tenant_id*]
# the keystone tenant id for ceilometer services.
-# Optional. Defaults to empty.
+# Optional. Defaults to undef.
#
# [*auth_cacert*]
# Certificate chain for SSL validation. Optional; Defaults to 'None'
$auth_region = 'RegionOne',
$auth_user = 'ceilometer',
$auth_tenant_name = 'services',
- $auth_tenant_id = '',
+ $auth_tenant_id = undef,
$auth_cacert = undef,
) {
'service_credentials/os_tenant_name' : value => $auth_tenant_name;
}
- if ($auth_tenant_id != '') {
+ if $auth_tenant_id {
ceilometer_config {
'service_credentials/os_tenant_id' : value => $auth_tenant_id;
}