Resource Type: wls_machine

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

Overview

This resource allows you to manage machine in an WebLogic domain.

Here is an example on how you should use this:

wls_machine { 'test2':
  ensure        => 'present',
  listenaddress => '10.10.10.10',
  listenport    => '5556',
  machinetype   => 'UnixMachine',
  nmtype        => 'SSL',
}

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

wls_machine { 'my_domain/test2':
  ensure        => 'present',
  listenaddress => '10.10.10.10',
  listenport    => '5556',
  machinetype   => 'UnixMachine',
  nmtype        => 'SSL',
}

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