Add example playbook for using multiple roles together

This commit is contained in:
Shaun Reed 2019-08-29 09:48:53 +00:00
parent 6eacffce04
commit 61fc06e878
2 changed files with 11 additions and 0 deletions

View File

@ -25,6 +25,9 @@ sub.domain.com:22
[docker-host]
127.0.0.1:22
[dev]
sub.domain.com:22
## green.example.com
## blue.example.com
## 192.168.100.1

8
ansible/make-host.yml Normal file
View File

@ -0,0 +1,8 @@
---
- hosts: dev
become: yes
roles:
- core
- docker
- nginx