Merge "Replacing attribute argument of the jinja filter with json module call"

This commit is contained in:
Zuul 2023-02-03 17:34:37 +00:00 committed by Gerrit Code Review
commit d22be8098f
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
- name: Set minimum required disk size
set_fact:
min_disk_size: "{{ disk_sizes | max(attribute='disk') }}"
min_disk_size: "{{ disk_sizes | community.general.json_query('[*].disk') | max }}"
- name: Get list of baremetal nodes
openstack.cloud.baremetal_node_info: