vagrant チートシート

ちょっと便利なチートシート。主に覚書。
vagrant ssh-config --host 192.168.33.10
で ~/.ssh/configに以下のように書き込まれるので

Host 192.168.33.10
  HostName 127.0.0.1
  User vagrant
  Port 2200
  UserKnownHostsFile /dev/null
  StrictHostKeyChecking no
  PasswordAuthentication no
  IdentityFile /Users/xxxxx/Vagrant/ansibleCentOS72/.vagrant/machines/default/virtualbox/private_key
  IdentitiesOnly yes
  LogLevel FATAL
ssh 192.168.33.10 

sshアクセスできる。