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