Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # ansible hosts
  2.  
  3. all:
  4. children:
  5. project-servers:
  6. hosts:
  7. ingress:
  8. ansible_user: ubuntu
  9. ansible_host: 192.168.9.12 # replace by internal ip
  10. app:
  11. ansible_user: ubuntu
  12. ansible_host: 192.168.20.92 # replace by internal ip
  13. storage:
  14. ansible_user: ubuntu
  15. ansible_host: 192.168.18.165 # replace by internal ip
  16. vars:
  17. ansible_ssh_common_args: '-o StrictHostKeyChecking=no -o ProxyCommand="ssh -W %h:%p -q root@xxx.xxx.xxx.xxx"' # replace by user and ip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement