Spring Cloud Service Config Server Git Setting Repository Ssh Auth
data class SpringCloudServiceConfigServerGitSettingRepositorySshAuth(val hostKey: String? = null, val hostKeyAlgorithm: String? = null, val privateKey: String, val strictHostKeyCheckingEnabled: Boolean? = null)
Properties
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
.