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',
}

Properties

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent

Parameters

  • provider

    The specific backend to use for this ‘wls_user` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.