diff --git a/config/types.go b/config/types.go index a5461127..60827747 100644 --- a/config/types.go +++ b/config/types.go @@ -81,6 +81,7 @@ type RancherConfig struct { Modules []string `yaml:"modules,omitempty"` Network netconf.NetworkConfig `yaml:"network,omitempty"` Repositories Repositories `yaml:"repositories,omitempty"` + Ssh SshConfig `yaml:"ssh,omitempty"` State StateConfig `yaml:"state,omitempty"` SystemDocker DockerConfig `yaml:"system_docker,omitempty"` Upgrade UpgradeConfig `yaml:"upgrade,omitempty"` @@ -107,6 +108,10 @@ type DockerConfig struct { Exec bool `yaml:"exec,omitempty"` } +type SshConfig struct { + Keys map[string]string `yaml:"keys,omitempty"` +} + type StateConfig struct { Directory string `yaml:"directory,omitempty"` FsType string `yaml:"fstype,omitempty"`