From 58c12d722b9bc968766f5f9e99e3f5e3d23576f3 Mon Sep 17 00:00:00 2001 From: "Jason N." <33561705+JasonN3@users.noreply.github.com> Date: Fri, 8 Mar 2024 11:05:04 -0500 Subject: [PATCH] fix inventory --- .github/workflows/build-and-test.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 2cb015c..3c99f9b 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -227,11 +227,12 @@ jobs: echo "VM ready for tests at IP ${VM_IP}" echo "Creating Ansible inventory" cat << EOF > ansible_inventory - hosts: - vm: - ansible_host: ${VM_IP} - ansible_user: ${VM_USER} - ansible_password: ${VM_PASS} + ungrouped: + hosts: + vm: + ansible_host: ${VM_IP} + ansible_user: ${VM_USER} + ansible_password: ${VM_PASS} EOF cat ansible_inventory