Overview

This class is the default implementation for making sure the WebLogic account has ssh keys setup so it can passwordless copy files. This is required when copying the packed domain from an admin server to a WebLogic node. If you are building singles node WebLogic configurations, you can skip this class.

Using hiera, you can customize some of the aspects of this process.

When these customizations aren’t enough, you can replace the class with your own class. See wls_profile::admin_server for an explanation on how to do this.

Attributes

Attribute Name Short Description
os_group The os group to use for WebLogic.
os_user The os user to use for WebLogic.
private_key The private key to create for the os_user account.
public_key The public key to create for the os_user account.

os_user

The os user to use for WebLogic.

This value is used in multiple places. To make sure in all classed the correct value is used, use the hiera key wls_profile::basic_domain::os_user to change it to your requested value.

Default value: oracle Type: String[1]

Back to overview of ssh_setup

os_group

The os group to use for WebLogic.

This value is used in multiple places. To make sure in all classed the correct value is used, use the hiera key wls_profile::basic_domain::os_group to change it to your requested value.

Default value: dba Type: String[1]

Back to overview of ssh_setup

private_key

The private key to create for the os_user account.

The defaults contain a valid pair. It is recommended to specify your own values. Type: String[1]

Back to overview of ssh_setup

public_key

The public key to create for the os_user account.

The defaults contain a valid pair. It is recommended to specify your own values. Type: String[1]

Back to overview of ssh_setup