Resource Type: wls_group

Defined in:
lib/puppet/type/wls_group.rb
Providers:
simple

Overview

This resource allows you to manage group in a WebLogic Security Realm.

Here is an example on how you should use this:

wls_group { 'SuperUsers':
  ensure                 => 'present',
  authenticationprovider => 'DefaultAuthenticator',
  description            => 'SuperUsers',
  realm                  => 'myrealm',
  users                  => ['testuser2'],
}

In this example you are managing a group in the default domain. When you want to manage a group in a specific domain, you can use:

wls_group { 'my_domain/TestGroup':
  ensure                 => 'present',
  authenticationprovider => 'DefaultAuthenticator',
  description            => 'TestGroup',
  realm                  => 'myrealm',
  users                  => ['testuser1','testuser2'],
}

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_group` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.