Puppet Class: nexus::config::anonymous
- Defined in:
-
manifests/config/anonymous.pp
Summary
Manage if anonymous user have access to nexus repository manager
Overview
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'manifests/config/anonymous.pp', line 13
class nexus::config::anonymous (
Boolean $enabled = false,
String[1] $user_id = 'anonymous',
String[1] $realm_name = 'NexusAuthorizingRealm',
) {
nexus_setting { 'security/anonymous':
attributes => {
'enabled' => $enabled,
'userId' => $user_id,
'realmName' => $realm_name,
},
}
}
|