2019-03-21 11:00:53 +00:00
|
|
|
---
|
|
|
|
#
|
|
|
|
# This playbook configures most basic things about the hosts:
|
|
|
|
#
|
|
|
|
# - Admin and Additional users
|
|
|
|
# - Disables root login
|
|
|
|
# - Installs Common packages
|
|
|
|
# - Starts Consul client agent
|
|
|
|
#
|
|
|
|
# This is run on every newly provisioned host.
|
|
|
|
#
|
|
|
|
- name: Bootstrap Python support for Ansible
|
2021-02-09 19:27:13 +00:00
|
|
|
become: true
|
2019-03-21 11:00:53 +00:00
|
|
|
gather_facts: False
|
|
|
|
hosts: all
|
|
|
|
roles:
|
|
|
|
- infra-role-bootstrap/raw
|
|
|
|
|
|
|
|
- name: Bootstrap admin users and Consul
|
2021-02-09 19:27:13 +00:00
|
|
|
become: true
|
2019-03-21 11:00:53 +00:00
|
|
|
hosts: all
|
|
|
|
roles:
|
|
|
|
- infra-role-bootstrap
|