Initial repo structure — playbook skeletons, roles, client template inventory
This commit is contained in:
29
inventories/client_template/hosts.yml
Normal file
29
inventories/client_template/hosts.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
all:
|
||||
vars:
|
||||
client_id: "CLIENT_ID"
|
||||
client_name: "Client Name"
|
||||
billing_model: "hybrid"
|
||||
maintenance_window_start: "02:00"
|
||||
maintenance_window_end: "05:00"
|
||||
maintenance_window_tz: "UTC"
|
||||
n8n_webhook_url: "{{ lookup('env', 'N8N_WEBHOOK_URL') }}"
|
||||
human_estimate_seconds: 2700
|
||||
change_freeze: false
|
||||
|
||||
children:
|
||||
linux_hosts:
|
||||
hosts: {}
|
||||
vars:
|
||||
ansible_user: root
|
||||
ansible_ssh_private_key_file: "~/.ssh/client_key"
|
||||
os_family: "debian"
|
||||
|
||||
windows_hosts:
|
||||
hosts: {}
|
||||
vars:
|
||||
ansible_user: Administrator
|
||||
ansible_connection: winrm
|
||||
ansible_winrm_transport: ntlm
|
||||
ansible_winrm_server_cert_validation: validate
|
||||
ansible_port: 5986
|
||||
Reference in New Issue
Block a user