41 lines
987 B
YAML
41 lines
987 B
YAML
# ===================================================================================================
|
|
# ? ABOUT
|
|
# @author : Noah Knegt
|
|
# @email : personal@noahknegt.com
|
|
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
|
|
# @createdOn : 27-03-2023
|
|
# @description : This file contains the hosts for ansible.
|
|
# ===================================================================================================
|
|
|
|
---
|
|
vpses:
|
|
hosts:
|
|
vps1-contabo:
|
|
ansible_host: 161.97.139.67
|
|
ansible_port: 4422
|
|
ansible_user: ansible
|
|
|
|
pis:
|
|
hosts:
|
|
pi1:
|
|
ansible_host: 192.168.90.2
|
|
ansible_user: ansible
|
|
pi2:
|
|
ansible_host: 192.168.90.3
|
|
ansible_user: ansible
|
|
|
|
localhost:
|
|
hosts:
|
|
localhost-machine:
|
|
ansible_connection: local
|
|
|
|
all:
|
|
children:
|
|
home:
|
|
children:
|
|
pis:
|
|
datacenter:
|
|
children:
|
|
vpses:
|
|
localhost:
|