1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
# == Class: barometer::keystone::auth
#
# Configures barometer user, service and endpoint in Keystone.
#
# === Parameters
#
# [*password*]
# (required) Password for barometer user.
#
# [*ensure*]
# (optional) Ensure state of keystone service identity. Defaults to 'present'.
#
# [*auth_name*]
# Username for barometer service. Defaults to 'barometer'.
#
# [*email*]
# Email for barometer user. Defaults to 'barometer@localhost'.
#
# [*tenant*]
# Tenant for barometer user. Defaults to 'services'.
#
# [*configure_endpoint*]
# Should barometer endpoint be configured? Defaults to 'true'.
#
# [*configure_user*]
# (Optional) Should the service user be configured?
# Defaults to 'true'.
#
# [*configure_user_role*]
# (Optional) Should the admin role be configured for the service user?
# Defaults to 'true'.
#
# [*service_type*]
# Type of service. Defaults to 'key-manager'.
#
# [*region*]
# Region for endpoint. Defaults to 'RegionOne'.
#
# [*service_name*]
# (optional) Name of the service.
# Defaults to the value of 'barometer'.
#
# [*service_description*]
# (optional) Description of the service.
# Default to 'barometer NFV Service'
#
# [*public_url*]
# (optional) The endpoint's public url. (Defaults to 'http://127.0.0.1:9890')
# This url should *not* contain any trailing '/'.
#
# [*admin_url*]
# (optional) The endpoint's admin url. (Defaults to 'http://127.0.0.1:9890')
# This url should *not* contain any trailing '/'.
#
# [*internal_url*]
# (optional) The endpoint's internal url. (Defaults to 'http://127.0.0.1:9890')
#
class barometer::keystone::auth (
$password,
$ensure = 'present',
$auth_name = 'barometer',
$email = 'barometer@localhost',
$tenant = 'services',
$configure_endpoint = true,
$configure_user = true,
$configure_user_role = true,
$service_name = 'barometer',
$service_description = 'barometer NFV Service',
$service_type = 'nfv-orchestration',
$region = 'RegionOne',
$public_url = 'http://127.0.0.1:9890',
$admin_url = 'http://127.0.0.1:9890',
$internal_url = 'http://127.0.0.1:9890',
) {
if $configure_user_role {
Keystone_user_role["${auth_name}@${tenant}"] ~> Service <| name == 'barometer-server' |>
}
Keystone_endpoint["${region}/${service_name}::${service_type}"] ~> Service <| name == 'barometer-server' |>
keystone::resource::service_identity { 'barometer':
ensure => $ensure,
configure_user => $configure_user,
configure_user_role => $configure_user_role,
configure_endpoint => $configure_endpoint,
service_name => $service_name,
service_type => $service_type,
service_description => $service_description,
region => $region,
auth_name => $auth_name,
password => $password,
email => $email,
tenant => $tenant,
public_url => $public_url,
internal_url => $internal_url,
admin_url => $admin_url,
}
}
|