SpringCloudServiceConfigServerGitSettingSshAuth

data class SpringCloudServiceConfigServerGitSettingSshAuth(val hostKey: String? = null, val hostKeyAlgorithm: String? = null, val privateKey: String, val strictHostKeyCheckingEnabled: Boolean? = null)

Constructors

constructor(hostKey: String? = null, hostKeyAlgorithm: String? = null, privateKey: String, strictHostKeyCheckingEnabled: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val hostKey: String? = null

The host key of the Git repository server, should not include the algorithm prefix as covered by host-key-algorithm.

Link copied to clipboard

The host key algorithm, should be ssh-dss, ssh-rsa, ecdsa-sha2-nistp256, ecdsa-sha2-nistp384, or ecdsa-sha2-nistp521. Required only if host-key exists.

Link copied to clipboard

The SSH private key to access the Git repository, required when the URI starts with git@ or ssh://.

Link copied to clipboard

Indicates whether the Config Server instance will fail to start if the host_key does not match. Defaults to true.