add ssh destination to connection config

This commit is contained in:
Pavel Sviderski
2024-09-10 13:46:17 +10:00
parent 2514c804dc
commit fd314bcf65
2 changed files with 39 additions and 4 deletions
+2 -2
View File
@@ -6,6 +6,6 @@ type Cluster struct {
Name string `toml:"-"`
Machines []MachineConnection `toml:"machines"`
Secret secret.Secret `toml:"secret"`
// UserKey is the user's WireGuard private key used to connect to cluster machines.
UserKey secret.Secret `toml:"user_key"`
// UserPrivateKey is the user's WireGuard private key used to connect to cluster machines.
UserPrivateKey secret.Secret `toml:"user_private_key"`
}