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) => { Ok(instance) => {
println!("Instance {} created!", &instance.name); println!("Instance {} created!", &instance.name);
println!( println!(
"You should be able to reach it with: ssh root@{}", "You should be able to reach it with: ssh {}@{}",
instance.lease.addr.addr, &config.cloud.admin_user, instance.lease.addr.addr,
); );
} }
Err(err) => { Err(err) => {