client: provide admin user in connect string

This commit is contained in:
snow flurry 2024-08-15 21:29:27 -07:00
parent 811c3d1c72
commit 0cb3aea62e

View file

@ -261,8 +261,8 @@ async fn handle_command() -> Result<(), Box<dyn std::error::Error>> {
Ok(instance) => {
println!("Instance {} created!", &instance.name);
println!(
"You should be able to reach it with: ssh root@{}",
instance.lease.addr.addr,
"You should be able to reach it with: ssh {}@{}",
&config.cloud.admin_user, instance.lease.addr.addr,
);
}
Err(err) => {