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