diff options
author | B Stack <bgstack15@gmail.com> | 2016-10-03 11:43:00 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2016-10-03 11:43:00 -0400 |
commit | 17c0b3e049ec09a6605d18c9325a5a69d54db8f6 (patch) | |
tree | 029c5ba12793fdec2e9407285a59bb3e50d19747 /master.yml | |
parent | readme (diff) | |
download | ansible01-17c0b3e049ec09a6605d18c9325a5a69d54db8f6.tar.gz ansible01-17c0b3e049ec09a6605d18c9325a5a69d54db8f6.tar.bz2 ansible01-17c0b3e049ec09a6605d18c9325a5a69d54db8f6.zip |
added sudo
Diffstat (limited to 'master.yml')
-rw-r--r-- | master.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/master.yml b/master.yml new file mode 100644 index 0000000..064767e --- /dev/null +++ b/master.yml @@ -0,0 +1,18 @@ +--- +- name: All hosts + hosts: all + remote_user: root + roles: + - ad + - resolv_conf + - ssh + - ssh_keys + vars: + ssh_key_files: + - { user: 'bgstack15', file: '../../../company/pubkeys/bgstack15.pubkeys' } + +- name: Webservers + hosts: webservers + remote_user: root + roles: + - fail2ban |