This is an example of using Ansible to build a Vagrant box for development.

Please see the Readme for more information.

Chris Mague a9965c57ca docs hace 7 años
ansible 80be07a00d initial commit hace 7 años
.gitignore 80be07a00d initial commit hace 7 años
README.md a9965c57ca docs hace 7 años
Vagrantfile 80be07a00d initial commit hace 7 años

README.md

Ansible-Devbox

This vagrant is intended to be an example to get started using Ansible to provision your Development environment on vagrant.

Requirements

Install vagrant and virtualbox on your machine

Running

vagrant up

The first run might take a while

To add a new Ansible Galaxy role

Edit ansible/requirements.yml file it contains a few examples of different ways to fetch roles

vagrant provision

DANGER This will delete all of the files in the ansible/roles directory to ensure fresh roles are downloaded

Overriding Role variables

To override any variable in a role, usually located in ansible/roles//defaults/main.yml simply add an entry with the same name to ansible/vars/main.yml

Port Forwarding

Add any ports you would like to forward from your local machine into the Vagrant box in the Vagrantfile

# Forwarding Ports - you should add any necessary ports here
  config.vm.network "forwarded_port", guest: 2112, host: 2112