From 0d7b0f0c6614c57ff277418c0e7b881d53ae0bfb Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Tue, 16 Jun 2026 14:12:30 -0400 Subject: [PATCH] created a new host grouping naming sheme, including a hypothetical ungrouped host for staging purposes --- hosts.yml.example | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/hosts.yml.example b/hosts.yml.example index df685f6..d9a6148 100644 --- a/hosts.yml.example +++ b/hosts.yml.example @@ -1,11 +1,31 @@ # @TODO use hosts and host groupings that refer or point to VM or containerized servers for testing ungrouped: - hosts: ~ + hosts: + staging: + ansible_host: ~ # IP address of test host sukaato: hosts: ~ +sukaato_test: + hosts: + staging: armitage: hosts: ~ +armitage_test: + hosts: + staging: vps: - children: ~ + children: + sukaato: +vps_test: + children: + sukaato_test: homeserver: - children: ~ + children: + armitage: +homeserver_test: + children: + armitage_test: +test: + children: + vps_test: + homeserver_test: