[Vagrant guide] Updating private key location
Since Vagrant 1.7.0, released in December 2014, the private key file is autogenerated and has a new location - check the changelog for more info: [version 1.7.0 changelog](https://github.com/mitchellh/vagrant/blob/master/CHANGELOG.md#170-december-9-2014)
This commit is contained in:
parent
607ee95836
commit
c20c6d4eb4
1 changed files with 5 additions and 3 deletions
|
@ -107,14 +107,16 @@ inventory file may look something like this:
|
||||||
|
|
||||||
If you want to run Ansible manually, you will want to make sure to pass
|
If you want to run Ansible manually, you will want to make sure to pass
|
||||||
``ansible`` or ``ansible-playbook`` commands the correct arguments for the
|
``ansible`` or ``ansible-playbook`` commands the correct arguments for the
|
||||||
username (usually ``vagrant``) and the SSH key (usually
|
username (usually ``vagrant``) and the SSH key (since Vagrant 1.7.0, this will be something like
|
||||||
``~/.vagrant.d/insecure_private_key``), and the autogenerated inventory file.
|
``.vagrant/machines/[machine name]/[provider]/private_key``), and the autogenerated inventory file.
|
||||||
|
|
||||||
Here is an example:
|
Here is an example:
|
||||||
|
|
||||||
.. code-block:: bash
|
.. code-block:: bash
|
||||||
|
|
||||||
$ ansible-playbook -i .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory --private-key=~/.vagrant.d/insecure_private_key -u vagrant playbook.yml
|
$ ansible-playbook -i .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory --private-key=.vagrant/machines/default/virtualbox/private_key -u vagrant playbook.yml
|
||||||
|
|
||||||
|
Note: Vagrant versions prior to 1.7.0 will use the private key located at ``~/.vagrant.d/insecure_private_key.``
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue