90DaysOfDevOps/Days/Configmgmt/ansible-scenario4/playbook4.yml

15 lines
250 B
YAML
Raw Normal View History

- hosts: webservers
become: yes
vars:
http_port: 8000
https_port: 4443
html_welcome_msg: "Hello 90DaysOfDevOps - Welcome to Day 66!"
roles:
- common
- apache2
- hosts: proxy
become: yes
roles:
- common
- nginx