It seems every value needs to be queried separately. It would be great to have something like: ```go host, _ := ssh_config.GetHost("foo") fmt.Println(host.IdentityFile) fmt.Println(host.StrictHostKeyChecking) host.Port = 45 fmt.Println(host.SSHConfig()) ```