Using Yum module for Satellite repo

Hi Ansible Gurus,

I have set up satellite server for hosting my RHEL based rpms.
This is the snippet how my repo looks like:
[rhel-7rpms]
metadata_expire = 1
enabled_metadata = 0
sslclientcert = abc.pem
baseurl = https://mysatelliteserver
ui_repoid_vars = basearch
sslverify = 1
name = Red Hat Enterprise Linux 7 Server - Extras (RPMs)
sslclientkey = my-key.pem
gpgkey =
enabled = 1
sslcacert = my-server-ca.pem
gpgcheck = 1

I see there are lot of options which are not defined under yum module (such as cert related as shown in above snippet) . IN that case, how can i use yum module of ansible to install the packages from satellite server ?

https://docs.ansible.com/ansible/latest/collections/ansible/builtin/yum_module.html#parameter-conf_file

Hi Dick,

I think that is my question , i see some options in my yum configuration (as snippet shown in mail like sslclientkey,sslcacert etc.) but those are not there in yum module parameters list which you also shared!

Ok got, all these are defined in https://docs.ansible.com/ansible/latest/collections/ansible/builtin/yum_repository_module.html

Thanks