PoolUserAccountLinuxUserConfigurationArgs

data class PoolUserAccountLinuxUserConfigurationArgs(val gid: Output<Int>? = null, val sshPrivateKey: Output<String>? = null, val uid: Output<Int>? = null) : ConvertibleToJava<PoolUserAccountLinuxUserConfigurationArgs>

Constructors

constructor(gid: Output<Int>? = null, sshPrivateKey: Output<String>? = null, uid: Output<Int>? = null)

Properties

Link copied to clipboard
val gid: Output<Int>? = null

The user ID of the user account. The uid and gid properties must be specified together or not at all. If not specified the underlying operating system picks the uid.

Link copied to clipboard
val sshPrivateKey: Output<String>? = null

The SSH private key for the user account. The private key must not be password protected. The private key is used to automatically configure asymmetric-key based authentication for SSH between nodes in a Linux pool when the pool's enableInterNodeCommunication property is true (it is ignored if enableInterNodeCommunication is false). It does this by placing the key pair into the user's .ssh directory. If not specified, password-less SSH is not configured between nodes (no modification of the user's .ssh directory is done).

Link copied to clipboard
val uid: Output<Int>? = null

The group ID for the user account. The uid and gid properties must be specified together or not at all. If not specified the underlying operating system picks the gid.

Functions

Link copied to clipboard
open override fun toJava(): PoolUserAccountLinuxUserConfigurationArgs