Remove invalid characters from group names

This commit is contained in:
Jeffrey Serio 2025-01-22 22:19:22 -06:00
parent c789529f5a
commit 05050ad632
3 changed files with 4 additions and 4 deletions

View File

@ -21,14 +21,14 @@ servers:
ansible_host: 10.0.0.5 ansible_host: 10.0.0.5
ansible_python_interpreter: /usr/bin/python3 ansible_python_interpreter: /usr/bin/python3
prometheus-servers: promservers:
hosts: hosts:
desktop: desktop:
ansible_user: jas ansible_user: jas
ansible_host: localhost ansible_host: localhost
ansible_python_interpreter: /usr/bin/python3 ansible_python_interpreter: /usr/bin/python3
prometheus-clients: promclients:
hosts: hosts:
hyperreal.coffee: hyperreal.coffee:
ansible_user: jas ansible_user: jas

View File

@ -1,5 +1,5 @@
--- ---
- hosts: prometheus-clients - hosts: promclients
tasks: tasks:
- name: Import Node Exporter role - name: Import Node Exporter role
import_role: import_role:

View File

@ -1,5 +1,5 @@
--- ---
- hosts: prometheus-servers - hosts: promservers
tasks: tasks:
- name: Import Node Exporter role - name: Import Node Exporter role
import_role: import_role: