I have a playbook which is using lvg module, it works fine on 14.1.0. But shows syntax error on Awx 19.5.0.
playbook is as below:-
---
- hosts: localhost
become: true
become_user: root
tasks:
- name: datavg volume group creation
lvg:
vg: datavg
pvs: /dev/sdc
------------------------------------------------------------------
Error:
ERROR! couldn't resolve module/action 'lvg'. This often indicates a misspelling, missing collection, or incorrect module path.
The error appears to be in '/runner/project/lvg.yml': line 8, column 7, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
- name: datavg volume group creation
------------------------------------------------------------------
Can someone suggest what can possibly the reason behind this.