Introduction
I would like to trigger a Compute Engine remotely using gcloud for a bussiness process, from the documentation I see that it can be done with this command, which is a wrapper of the next command that I would like to use instead of installing the gcloud SDK.
ssh -i ~/.ssh/gcloud_ce <instance_name>@<vm_ext_ip> 'ls'
to execute the ls
command from my PC, but I am only welcomed by Permission denied (public key)
.
What I am missing to configure and achieve this goal?