Ansible repository with playbooks to manage azure objects
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 line
544 B

  1. ---
  2. ansible_ssh_private_key_file: '~/.ssh/id_rsa'
  3. ansible_python_interpreter: "/usr/bin/python3"
  4. groups:
  5. jumpboxes:
  6. hosts:
  7. gestiondns-prod-caea-vm01:
  8. private_ipv4_address: "10.225.128.70"
  9. ansible_host: "{{ public_ipv4_address | default(private_ipv4_address, true) }}"
  10. ansible_user: master
  11. jumpbox1_vm:
  12. private_ipv4_address: "10.224.192.69"
  13. ansible_host: "{{ public_ipv4_address | default(private_ipv4_address, true) }}"
  14. ansible_user: master
  15. localhost:
  16. ...