LVG Module is not working on AWX 19.5.0

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:-

HI!

In new AWX versions, all jobs run in a container, the default being based on the AWX-EE image. This image does not have the LVG module included, as that belongs to the community.general collection.
You will need to build your own EE. For information on how to do that, see https://ansible-builder.readthedocs.io/en/stable/

In some cases you can get by with adding your specific module needs to collections/requirements.yml (in your project folder), as described here https://docs.ansible.com/automation-controller/latest/html/userguide/projects.html#collections-support
However, if your module requires specific system-level dependencies, you’ll need to build a custom EE.

AWX Team