인스턴스 이미지로 인스턴스 생성시 cirros는 콘솔에서 패스워드가 디스플레이되고,
ubuntu이미지는 2가지방법이 존재합니다.
1. keypair생성 후 keypair로 접속
ssh -i keypair ubuntu@instance_ip
2. 인스턴스 create 시 custome script에 cloud init 파일 아래와 같이 등록
Here is a script you could use to set default passwords and enable SSH password authentication.

#cloud-config
chpasswd:
list: |
root:stackops
ubuntu:stackops
expire: False
ssh_pwauth: True
ssh ubuntu@인스턴스ip