--- - name: Create system groups udm_group: name: "{{ item.name }}" description: "{{ item.description | default(omit) }}" subpath: "{{ item.subpath | default(omit) }}" ou: "{{ item.ou | default(omit) }}" state: "{{ item.state | default('present') }}" loop: "{{ ucs_system_groups }}" loop_control: label: "{{ item.name }}" become: True become_user: root