Ansible Local Provisioner
Provisioner name: ansible_local
The Vagrant Ansible Local provisioner allows you to provision the guest using Ansible playbooks by executing ansible-playbook
directly on the guest machine.
Warning: If you are not familiar with Ansible and Vagrant already, we recommend starting with the shell provisioner. However, if you are comfortable with Vagrant already, Vagrant is a great way to learn Ansible.
Setup Requirements
The main advantage of the Ansible Local provisioner in comparison to the Ansible (remote) provisioner is that it does not require any additional software on your Vagrant host.
On the other hand, Ansible must obviously be installed on your guest machine(s).
Note: By default, Vagrant will try to automatically install Ansible if it is not yet present on the guest machine (see the install
option below for more details).
Usage
This page only documents the specific parts of the ansible_local
provisioner. General Ansible concepts like Playbook or Inventory are shortly explained in the introduction to Ansible and Vagrant.
The Ansible Local provisioner requires that all the Ansible Playbook files are available on the guest machine, at the location referred by the provisioning_path
option. Usually these files are initially present on the host machine (as part of your Vagrant project), and it is quite easy to share them with a Vagrant Synced Folder.
Simplest Configuration
To run Ansible from your Vagrant guest, the basic Vagrantfile
configuration looks like:
Requirements:
The
playbook.yml
file is stored in your Vagrant's project home directory.The default shared directory is enabled (
.
→/vagrant
).
Options
This section lists the specific options for the Ansible Local provisioner. In addition to the options listed below, this provisioner supports the common options for both Ansible provisioners.
install
(boolean) - Try to automatically install Ansible on the guest system.This option is enabled by default.
Vagrant will try to install (or upgrade) Ansible when one of these conditions are met:
Ansible is not installed (or cannot be found).
The
version
option is set to"latest"
.The current Ansible version does not correspond to the
version
option.Attention: There is no guarantee that this automated installation will replace a custom Ansible setup, that might be already present on the Vagrant box.
install_mode
(:default
,:pip
, or:pip_args_only
) - Select the way to automatically install Ansible on the guest system.:default
: Ansible is installed from the operating system package manager. This mode doesn't supportversion
selection. For many platforms (e.g Debian, FreeBSD, OpenSUSE) the official package repository is used, except for the following Linux distributions:- On Ubuntu-like systems, the latest Ansible release is installed from the
ppa:ansible/ansible
repository. The compatibility is maintained only for active long-term support (LTS) versions. - On RedHat-like systems, the latest Ansible release is installed from the EPEL repository.
- On Ubuntu-like systems, the latest Ansible release is installed from the
:pip
: Ansible is installed from PyPI with pip package installer. With this mode, Vagrant will systematically try to install the latest pip version. With the:pip
mode you can optionally install a specific Ansible release by setting theversion
option.Example:
With this configuration, Vagrant will install
pip
and then execute the commandAs-is
pip
is installed if needed via a default command which looks likeThis can be problematic in certain scenarios, for example, when behind a proxy. It is possible to override this default command by providing an explicit command to run as part of the config using
pip_install_cmd
. For example:In this case case
pip
will be installed via the command:If
pip_install_cmd
is not provided in the config, thenpip
is installed via the default command.:pip_args_only
: This mode is very similar to the:pip
mode, with the difference that in this case no pip arguments will be automatically set by Vagrant.Example:
With this configuration, Vagrant will install
pip
and then execute the commandThe default value of
install_mode
is:default
, and any invalid value for this option will silently fall back to the default value.
pip_args
(string) - When Ansible is installed via pip, this option allows the definition of additional pip arguments to be passed along on the command line (for example,--index-url
).By default, this option is not set.
Example:
With this configuration, Vagrant will install
pip
and then execute the commandprovisioning_path
(string) - An absolute path on the guest machine where the Ansible files are stored. Theansible-galaxy
andansible-playbook
commands are executed from this directory. This is the location to place an ansible.cfg file, in case you need it.The default value is
/vagrant
.tmp_path
(string) - An absolute path on the guest machine where temporary files are stored by the Ansible Local provisioner.The default value is
/tmp/vagrant-ansible
Tips and Tricks
Install Galaxy Roles in a path owned by root
Disclaimer: This tip is not a recommendation to install galaxy roles out of the vagrant user space, especially if you rely on SSH agent forwarding to fetch the roles.
Be careful that ansible-galaxy
command is executed by default as vagrant user. Setting galaxy_roles_path
to a folder like /etc/ansible/roles
will fail, and ansible-galaxy
will extract the role a second time in /home/vagrant/.ansible/roles/
. Then if your playbook uses become
to run as root
, it will fail with a "role was not found" error.
To work around that, you can use ansible.galaxy_command
to prepend the command with sudo
, as illustrated in the example below:
Ansible Parallel Execution from a Guest
With the following configuration pattern, you can install and execute Ansible only on a single guest machine (the "controller"
) to provision all your machines.
You need to create a static inventory
file that corresponds to your Vagrantfile
machine definitions:
And finally, you also have to create an ansible.cfg
file to fully disable SSH host key checking. More SSH configurations can be added to the ssh_args
parameter (e.g. agent forwarding, etc.)