From 673a8ebd3041d678dd9bb2abd19544363c17852a Mon Sep 17 00:00:00 2001
From: Eesaan Atluri <atlurie@uab.edu>
Date: Wed, 18 Sep 2024 21:54:29 -0500
Subject: [PATCH] refactor: Modify placeholder set for hosts during development

We changed it to "all" because that's the convention we follow.
When running ansible playbook you need to limit the hosts with -l
so that it doesn't run on all hosts.

Some background on why it was set to default in the first place,
`hosts: default` is used as a placeholder during development
to indicate where actual host groups will later be defined.
You can define specific host groups within the inventory
file with names that are more relevant to your infrastructure,
replacing the "default" placeholder.
---
 ansible/cheaha.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ansible/cheaha.yml b/ansible/cheaha.yml
index bfb1af11..79b50bea 100644
--- a/ansible/cheaha.yml
+++ b/ansible/cheaha.yml
@@ -1,6 +1,6 @@
 ---
 - name: Setup node for use as a virtual cheaha node
-  hosts: default
+  hosts: all
   become: true
   roles:
     - { name: 'cheaha.node', tags: 'cheaha.node' }
-- 
GitLab