From b995315116bc26f9ad8c6df7ec607d4b0b409ffb Mon Sep 17 00:00:00 2001 From: Alicia Cozine Date: Thu, 5 Sep 2024 17:47:14 -0500 Subject: [PATCH] and better names again --- playbooks/utils/vSphere_audit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/playbooks/utils/vSphere_audit.yml b/playbooks/utils/vSphere_audit.yml index 158455805d..910d715263 100644 --- a/playbooks/utils/vSphere_audit.yml +++ b/playbooks/utils/vSphere_audit.yml @@ -76,11 +76,11 @@ ansible.builtin.set_fact: storage_nodes: "{{ storage_info.datastores | map(attribute='info.name') | unique | sort }}" - - name: View list of templates + - name: View list of available templates ansible.builtin.debug: var: template_names - - name: View the list of ESXi hosts + - name: View list of ESXi hosts ansible.builtin.debug: var: esxi_hostnames @@ -102,7 +102,7 @@ ansible.builtin.debug: var: storage_nodes - - name: better view of storage info + - name: View free space per storage node ansible.builtin.debug: msg: The {{ item }} datastore has {{ storage_info.datastores | selectattr('info.name', 'equalto', item) | map(attribute='info.freeSpace') | sum | human_readable }} of free space. loop: "{{ storage_nodes }}"