From a869ba0677b526aa073f65a84987dea1ddc0c668 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Sun, 12 May 2024 17:47:48 -0400 Subject: [PATCH] Example / sample / template inventory Ansible YAML file --- inventory.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 inventory.yaml diff --git a/inventory.yaml b/inventory.yaml new file mode 100644 index 0000000..c335694 --- /dev/null +++ b/inventory.yaml @@ -0,0 +1,24 @@ +webservers: + hosts: + # {{ host_name }}: + # ansible_host: {{ fqdn }} + vars: + # ansible_port: {{ port_num }} +ssl_webservers: + hosts: + # {{ host_name }}: + # ansible_host: {{ fqdn }} + vars: + # ansible_port: {{ port_num }} +ssh_servers: + hosts: + # {{ host_name }}: + # ansible_host: {{ fqdn }} + vars: + # ansible_port: {{ port_num }} +local_ssh: + hosts: + # {{ host_name }}: + # ansible_host: {{ fqdn }} + vars: + # ansible_port: {{ port_num }} \ No newline at end of file