SSH connection without password between two Azure VMs

Clash Royale CLAN TAG #URR8PPP up vote 0 down vote favorite SSH connection without password between two Azure VMs I have two RHEL7 VMs running in the same resource group with the same subscription ID. I have assigned DNS names to them; master.eastus.cloudapp.azure.com and node.eastus.cloudapp.azure.com The ips are dynamically assigned by Azure These VMs are setup for a manual installation of OpenShift which requires two VMs and will need to communicate with ssh, no password Both VMs are on the same subnet: subnet Virtual network/subnet: openshift-vm-vnet/default I have set up two Network Interface Inbound rules for each vm-vnet/default Master :: internal ip 10.0.0.3 name port protocol Source Destination Action default -allow-ssh 22 TCP <Corp ip> Any Allow node_vm 22 TCP 10.0.0.0/29 Any Allow Node :: internal ip 10.0.0.4 name port protocol Source Destination Action default -allow-ssh 22 TCP <Corp ip> Any Allow master_vm 22 TCP 10.0.0.0/29 Any Allow I am able ...