├── .gitignore ├── .travis.yml ├── 01-basic ├── INV ├── README.md ├── Vagrantfile ├── kata.jpg └── setup.yml ├── 02-pkgmgr ├── README.md ├── Vagrantfile └── setup.yml ├── 03-deploy ├── README.md ├── Vagrantfile ├── setup.yml └── templates │ └── nginx-wordpress.conf.j2 ├── 04-db ├── README.md ├── Vagrantfile ├── setup.yml └── templates │ └── nginx-wordpress.conf.j2 ├── 05-success ├── README.md ├── Vagrantfile ├── hosts-azure ├── hosts-ec2 ├── hosts-gce ├── init-wordpress.yml ├── setup.yml └── templates │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 ├── 06-ci ├── .dockerignore ├── README.md ├── Vagrantfile ├── init-wordpress.yml ├── setup.yml ├── templates │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 └── test │ └── Dockerfile ├── 10-role ├── .dockerignore ├── README.md ├── Vagrantfile ├── init-wordpress.yml ├── roles │ └── nginx │ │ ├── handlers │ │ └── main.yml │ │ └── tasks │ │ └── main.yml ├── setup.yml ├── templates │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 └── test │ └── Dockerfile ├── 11-galaxy ├── .dockerignore ├── .gitignore ├── README.md ├── Vagrantfile ├── init-wordpress.yml ├── install-roles.sh ├── requirements.yml ├── setup.yml ├── templates │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 └── test │ └── Dockerfile ├── 20-cluster ├── .dockerignore ├── .gitignore ├── README.md ├── Vagrantfile ├── db.yml ├── init-wordpress.yml ├── install-roles.sh ├── requirements.yml ├── templates │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 ├── test │ ├── Dockerfile-db │ └── Dockerfile-wordpress └── wordpress.yml ├── 21-ha ├── .dockerignore ├── .gitignore ├── README.md ├── Vagrantfile ├── db.yml ├── group_vars │ └── all ├── init-wordpress.yml ├── install-roles.sh ├── lb.yml ├── requirements.yml ├── templates │ ├── haproxy.cfg.j2 │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 └── wordpress.yml ├── 30-canary ├── .dockerignore ├── .gitignore ├── README.md ├── Vagrantfile ├── db.yml ├── files │ └── header.php ├── group_vars │ └── all ├── init-wordpress.yml ├── install-roles.sh ├── lb.yml ├── requirements.yml ├── templates │ ├── haproxy.cfg.j2 │ ├── nginx-wordpress.conf.j2 │ └── wp-config.php.j2 ├── update-wordpress.yml └── wordpress.yml ├── LICENSE ├── README.md ├── circle.yml └── control-machine └── Vagrantfile /.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | 00-script 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/.travis.yml -------------------------------------------------------------------------------- /01-basic/INV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/01-basic/INV -------------------------------------------------------------------------------- /01-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/01-basic/README.md -------------------------------------------------------------------------------- /01-basic/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/01-basic/Vagrantfile -------------------------------------------------------------------------------- /01-basic/kata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/01-basic/kata.jpg -------------------------------------------------------------------------------- /01-basic/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/01-basic/setup.yml -------------------------------------------------------------------------------- /02-pkgmgr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/02-pkgmgr/README.md -------------------------------------------------------------------------------- /02-pkgmgr/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/02-pkgmgr/Vagrantfile -------------------------------------------------------------------------------- /02-pkgmgr/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/02-pkgmgr/setup.yml -------------------------------------------------------------------------------- /03-deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/03-deploy/README.md -------------------------------------------------------------------------------- /03-deploy/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/03-deploy/Vagrantfile -------------------------------------------------------------------------------- /03-deploy/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/03-deploy/setup.yml -------------------------------------------------------------------------------- /03-deploy/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/03-deploy/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /04-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/04-db/README.md -------------------------------------------------------------------------------- /04-db/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/04-db/Vagrantfile -------------------------------------------------------------------------------- /04-db/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/04-db/setup.yml -------------------------------------------------------------------------------- /04-db/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/04-db/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /05-success/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/README.md -------------------------------------------------------------------------------- /05-success/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/Vagrantfile -------------------------------------------------------------------------------- /05-success/hosts-azure: -------------------------------------------------------------------------------- 1 | [azure-host] 2 | 111.222.333.444 3 | 4 | -------------------------------------------------------------------------------- /05-success/hosts-ec2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/hosts-ec2 -------------------------------------------------------------------------------- /05-success/hosts-gce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/hosts-gce -------------------------------------------------------------------------------- /05-success/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/init-wordpress.yml -------------------------------------------------------------------------------- /05-success/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/setup.yml -------------------------------------------------------------------------------- /05-success/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /05-success/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/05-success/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /06-ci/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vagrant 3 | -------------------------------------------------------------------------------- /06-ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/README.md -------------------------------------------------------------------------------- /06-ci/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/Vagrantfile -------------------------------------------------------------------------------- /06-ci/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/init-wordpress.yml -------------------------------------------------------------------------------- /06-ci/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/setup.yml -------------------------------------------------------------------------------- /06-ci/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /06-ci/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /06-ci/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/06-ci/test/Dockerfile -------------------------------------------------------------------------------- /10-role/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vagrant 3 | -------------------------------------------------------------------------------- /10-role/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/README.md -------------------------------------------------------------------------------- /10-role/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/Vagrantfile -------------------------------------------------------------------------------- /10-role/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/init-wordpress.yml -------------------------------------------------------------------------------- /10-role/roles/nginx/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/roles/nginx/handlers/main.yml -------------------------------------------------------------------------------- /10-role/roles/nginx/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/roles/nginx/tasks/main.yml -------------------------------------------------------------------------------- /10-role/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/setup.yml -------------------------------------------------------------------------------- /10-role/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /10-role/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /10-role/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/10-role/test/Dockerfile -------------------------------------------------------------------------------- /11-galaxy/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vagrant 3 | roles 4 | -------------------------------------------------------------------------------- /11-galaxy/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | roles 3 | -------------------------------------------------------------------------------- /11-galaxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/README.md -------------------------------------------------------------------------------- /11-galaxy/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/Vagrantfile -------------------------------------------------------------------------------- /11-galaxy/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/init-wordpress.yml -------------------------------------------------------------------------------- /11-galaxy/install-roles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/install-roles.sh -------------------------------------------------------------------------------- /11-galaxy/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/requirements.yml -------------------------------------------------------------------------------- /11-galaxy/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/setup.yml -------------------------------------------------------------------------------- /11-galaxy/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /11-galaxy/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /11-galaxy/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/11-galaxy/test/Dockerfile -------------------------------------------------------------------------------- /20-cluster/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vagrant 3 | roles 4 | -------------------------------------------------------------------------------- /20-cluster/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | roles 3 | -------------------------------------------------------------------------------- /20-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/README.md -------------------------------------------------------------------------------- /20-cluster/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/Vagrantfile -------------------------------------------------------------------------------- /20-cluster/db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/db.yml -------------------------------------------------------------------------------- /20-cluster/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/init-wordpress.yml -------------------------------------------------------------------------------- /20-cluster/install-roles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/install-roles.sh -------------------------------------------------------------------------------- /20-cluster/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/requirements.yml -------------------------------------------------------------------------------- /20-cluster/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /20-cluster/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /20-cluster/test/Dockerfile-db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/test/Dockerfile-db -------------------------------------------------------------------------------- /20-cluster/test/Dockerfile-wordpress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/test/Dockerfile-wordpress -------------------------------------------------------------------------------- /20-cluster/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/20-cluster/wordpress.yml -------------------------------------------------------------------------------- /21-ha/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vagrant 3 | roles 4 | -------------------------------------------------------------------------------- /21-ha/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | roles 3 | -------------------------------------------------------------------------------- /21-ha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/README.md -------------------------------------------------------------------------------- /21-ha/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/Vagrantfile -------------------------------------------------------------------------------- /21-ha/db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/db.yml -------------------------------------------------------------------------------- /21-ha/group_vars/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/group_vars/all -------------------------------------------------------------------------------- /21-ha/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/init-wordpress.yml -------------------------------------------------------------------------------- /21-ha/install-roles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/install-roles.sh -------------------------------------------------------------------------------- /21-ha/lb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/lb.yml -------------------------------------------------------------------------------- /21-ha/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/requirements.yml -------------------------------------------------------------------------------- /21-ha/templates/haproxy.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/templates/haproxy.cfg.j2 -------------------------------------------------------------------------------- /21-ha/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /21-ha/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /21-ha/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/21-ha/wordpress.yml -------------------------------------------------------------------------------- /30-canary/.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vagrant 3 | roles 4 | -------------------------------------------------------------------------------- /30-canary/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | roles 3 | -------------------------------------------------------------------------------- /30-canary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/README.md -------------------------------------------------------------------------------- /30-canary/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/Vagrantfile -------------------------------------------------------------------------------- /30-canary/db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/db.yml -------------------------------------------------------------------------------- /30-canary/files/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/files/header.php -------------------------------------------------------------------------------- /30-canary/group_vars/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/group_vars/all -------------------------------------------------------------------------------- /30-canary/init-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/init-wordpress.yml -------------------------------------------------------------------------------- /30-canary/install-roles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/install-roles.sh -------------------------------------------------------------------------------- /30-canary/lb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/lb.yml -------------------------------------------------------------------------------- /30-canary/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/requirements.yml -------------------------------------------------------------------------------- /30-canary/templates/haproxy.cfg.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/templates/haproxy.cfg.j2 -------------------------------------------------------------------------------- /30-canary/templates/nginx-wordpress.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/templates/nginx-wordpress.conf.j2 -------------------------------------------------------------------------------- /30-canary/templates/wp-config.php.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/templates/wp-config.php.j2 -------------------------------------------------------------------------------- /30-canary/update-wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/update-wordpress.yml -------------------------------------------------------------------------------- /30-canary/wordpress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/30-canary/wordpress.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/circle.yml -------------------------------------------------------------------------------- /control-machine/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softarch-school/ansible-workshop/HEAD/control-machine/Vagrantfile --------------------------------------------------------------------------------