Proxy
To define a proxy server, use the following parameters:
Name | Type | Description |
---|---|---|
proxy_login | String | The username required to connect to the proxy server. |
proxy_host | String | The host for the proxy connection. |
proxy_port | String | The port for the proxy connection. |
proxy_authentication_mode | String | The authentication mode for SSH proxy connection. Can be set to PASS , PRIVATE_KEY , PRIVATE_KEY_AND_PASS or ENV_KEY . |
proxy_password | String | The password required to connect to the proxy server. |
proxy_passphrase | String | The passphrase for the private SSH key. |
proxy_env_key | String | The private SSH key name defined in environment variables. |
proxy_server_key | String | The private SSH key. |
Example for Proxy Password
default"proxy_authentication_mode": "PASS" "proxy_login": "proxyUser", "proxy_host": "proxyHost", "proxy_port": "proxyPort", "proxy_password": "proxyPassword"
Example for Proxy Private Key
default"proxy_authentication_mode": "PRIVATE_KEY" "proxy_login": "proxyUser", "proxy_host": "proxyHost", "proxy_port": "proxyPort", "proxy_passphrase": "proxyPassphrase", "proxy_server_key": "proxyServerkey"
Example for Proxy Private Key and Password
default"proxy_authentication_mode": "PRIVATE_KEY_AND_PASS" "proxy_login": "proxyUser", "proxy_host": "proxyHost", "proxy_port": "proxyPort", "proxy_password": "proxyPassword", "proxy_passphrase": "proxyPassphrase", "proxy_server_key": "proxyServerkey"
Example for Proxy Env Key
default"proxy_authentication_mode": "ENV_KEY" "proxy_login": "proxyUser", "proxy_host": "proxyHost", "proxy_port": "proxyPort", "proxy_env_key": "proxyMyEnvkey"
Last modified on Sep 23, 2024