scottslowe-learning-tools/ansible/bootstrap/bootstrap.yml
Scott Lowe 2fca12122a
Add files to show how to bootstrap Ubuntu 16.04 for Ansible
Add Terraform configurations to launch an Ubuntu 16.04 AWS instance. Add Ansible playbook to bootstrap the instance for use with Ansible.

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-09-18 21:40:05 -06:00

8 lines
141 B
YAML

---
- hosts: "all"
gather_facts: false
tasks:
- name: "Install Python"
raw: "apt-get -y -q install python"
become: true