Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ce9b5d58b4 | |||
| 2c29ea2780 |
@@ -1,3 +1,5 @@
|
|||||||
# Ansible Collection
|
# Ansible Collection
|
||||||
|
|
||||||
Opinionated set of roles to configure reasonable defaults for newly provisioned Debian / Ubuntu VMs running Docker. The repository provides a ready-to-use Ansible Collection (`studio.ansible`) containing reusable roles.
|
Opinionated set of roles to configure reasonable defaults for newly provisioned Debian / Ubuntu VMs running Docker. The repository provides:
|
||||||
|
- An Ansible Collection (`studio.ansible`) containing reusable roles. Use with ansible-galaxy's `requirements.yml`.
|
||||||
|
- A ready-to-use playbook configured by passing CLI vars `--extra-vars "ansible_host=${HOST_IP}` e.g. through CI / CD.
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
[target]
|
||||||
|
target_host ansible_host="{{ ansible_host }}"
|
||||||
|
|
||||||
|
[all:vars]
|
||||||
|
ansible_user="{{ ansible_user }}"
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- name: Setup machines
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- base
|
||||||
|
- users
|
||||||
|
- security
|
||||||
|
- docker
|
||||||
|
# - backup
|
||||||
Reference in New Issue
Block a user