26 lines
776 B
YAML
Executable file
26 lines
776 B
YAML
Executable file
POOL:
|
|
- ts_id: "server1"
|
|
ts_ip: "192.168.1.1"
|
|
ssh_port: 22
|
|
ssh_user: "user1"
|
|
ssh_key: "/path/to/ssh_key.pem" # Or use ssh_pass instead of ssh_key
|
|
ssh_pass: null # Optional: Use this if no SSH key is provided
|
|
vitals: "/path/to/vitals" # Path to the vitals script on the remote server
|
|
vpn: "/path/to/vpn_script" # Path to the VPN script on the remote server
|
|
|
|
- ts_id: "server2"
|
|
ts_ip: "192.168.1.2"
|
|
ssh_port: 22
|
|
ssh_user: "user2"
|
|
ssh_key: "/path/to/ssh_key2.pem"
|
|
vitals: "/path/to/vitals"
|
|
vpn: "/path/to/vpn_script"
|
|
|
|
- ts_id: "server3"
|
|
ts_ip: "192.168.1.3"
|
|
ssh_port: 2222
|
|
ssh_user: "user3"
|
|
ssh_key: null
|
|
ssh_pass: "your_password_here"
|
|
vitals: "/path/to/vitals"
|
|
vpn: "/path/to/vpn_script"
|