Resource Type: wls_user
- Defined in:
- lib/puppet/type/wls_user.rb
- Providers:
-
simple
Overview
This resource allows you to manage user in an WebLogic Security Realm.
Here is an example on how you should use this:
wls_user { 'OracleSystemUser':
ensure => 'present',
authenticationprovider => 'DefaultAuthenticator',
description => 'Oracle application software system user.',
realm => 'myrealm',
}
In this example you are managing a user in the default domain. When you want to manage a user in a specific domain, you can use:
# this will use default as wls_setting identifier
wls_user { 'my_domain/testuser1':
ensure => 'present',
authenticationprovider => 'DefaultAuthenticator',
description => 'testuser1',
realm => 'myrealm',
}