mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
11 lines
311 B
Go
11 lines
311 B
Go
package config
|
|
|
|
import "uncloud/internal/secret"
|
|
|
|
type Cluster struct {
|
|
Name string `toml:"-"`
|
|
Machines []MachineConnection `toml:"machines"`
|
|
// UserPrivateKey is the user's WireGuard private key used to connect to cluster machines.
|
|
UserPrivateKey secret.Secret `toml:"user_private_key"`
|
|
}
|