2024-01-07 11:39:23 +00:00
|
|
|
name: "SSH Remote Commands"
|
|
|
|
description: "Executing remote ssh commands"
|
|
|
|
author: "Bo-Yi Wu"
|
2019-09-29 02:34:52 +00:00
|
|
|
inputs:
|
|
|
|
host:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH host address."
|
2019-09-29 02:34:52 +00:00
|
|
|
port:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH port number."
|
2023-06-04 03:06:25 +00:00
|
|
|
default: "22"
|
2019-12-30 11:50:55 +00:00
|
|
|
passphrase:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Passphrase for the SSH key."
|
2019-09-29 02:34:52 +00:00
|
|
|
username:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH username."
|
2019-09-29 02:34:52 +00:00
|
|
|
password:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH password."
|
2020-01-30 14:40:33 +00:00
|
|
|
sync:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Enable synchronous execution if multiple hosts are involved."
|
2020-05-24 02:54:31 +00:00
|
|
|
use_insecure_cipher:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Include more ciphers by using insecure ciphers."
|
2020-05-24 05:13:09 +00:00
|
|
|
cipher:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Allowed cipher algorithms. If unspecified, a sensible default is used."
|
2019-09-29 02:34:52 +00:00
|
|
|
timeout:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Timeout duration for establishing SSH connection to the host."
|
2019-09-29 02:34:52 +00:00
|
|
|
default: "30s"
|
|
|
|
command_timeout:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Timeout duration for SSH commands execution."
|
2019-11-30 15:01:49 +00:00
|
|
|
default: "10m"
|
2019-09-29 02:34:52 +00:00
|
|
|
key:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Content of the SSH private key. For example, the raw content of ~/.ssh/id_rsa."
|
2019-09-29 02:34:52 +00:00
|
|
|
key_path:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Path to the SSH private key file."
|
2020-05-19 06:21:26 +00:00
|
|
|
fingerprint:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SHA256 fingerprint of the host public key."
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_host:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH proxy host address."
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_port:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH proxy port number."
|
2023-06-04 03:06:25 +00:00
|
|
|
default: "22"
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_username:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH proxy username."
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_password:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH proxy password."
|
2019-12-30 11:50:55 +00:00
|
|
|
proxy_passphrase:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SSH proxy key passphrase."
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_timeout:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Timeout duration for establishing SSH connection to the proxy host."
|
2019-12-07 12:05:02 +00:00
|
|
|
default: "30s"
|
|
|
|
proxy_key:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Content of the SSH proxy private key. For example, the raw content of ~/.ssh/id_rsa."
|
2019-12-07 12:05:02 +00:00
|
|
|
proxy_key_path:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Path to the SSH proxy private key file."
|
2020-05-19 06:21:26 +00:00
|
|
|
proxy_fingerprint:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "SHA256 fingerprint of the proxy host public key."
|
2020-05-24 05:13:09 +00:00
|
|
|
proxy_cipher:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Allowed cipher algorithms for the proxy. If unspecified, a sensible default is used."
|
2020-05-24 02:54:31 +00:00
|
|
|
proxy_use_insecure_cipher:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Include more ciphers for the proxy by using insecure ciphers."
|
2019-09-29 02:34:52 +00:00
|
|
|
script:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Commands to be executed."
|
2019-09-29 02:34:52 +00:00
|
|
|
script_stop:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Stop the script after the first failure."
|
2019-09-29 02:34:52 +00:00
|
|
|
envs:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Environment variables to be passed to the shell script."
|
2023-04-13 03:15:42 +00:00
|
|
|
envs_format:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Flexible configuration for environment value transfer."
|
2019-09-29 02:34:52 +00:00
|
|
|
debug:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "Enable debug mode."
|
2023-07-23 01:53:20 +00:00
|
|
|
allenvs:
|
2024-01-07 11:39:23 +00:00
|
|
|
description: "pass all environment variable to shell script."
|
|
|
|
request_pty:
|
|
|
|
description: "Request a pseudo-terminal from the server."
|
2019-09-29 02:34:52 +00:00
|
|
|
runs:
|
2024-01-07 11:39:23 +00:00
|
|
|
using: "docker"
|
|
|
|
image: "Dockerfile"
|
2019-09-29 02:34:52 +00:00
|
|
|
|
|
|
|
branding:
|
2024-01-07 11:39:23 +00:00
|
|
|
icon: "terminal"
|
|
|
|
color: "gray-dark"
|