CheckPointSW / CheckPointAnsibleMgmtCollection

This Ansible collection provides control over a Check Point Management server using Check Point's web-services APIs.

Home Page:https://galaxy.ansible.com/check_point/mgmt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Access-rulebase facts over Ansible module ?

JBaptisme33 opened this issue · comments

hello guys,

Thanks for your work and modules.
Is there a way to access to access-rulebase over an existing Ansible module ?

Indeed, module to obtain access-rulebase facts semms to existing ?
With actual modules, how to compare existing ruleset with a new one we want to add ?

Thanks :)

Hi, Thanks :)

For showing the rulebase we have the module you mentioned "cp_mgmt_access_rule_facts.py".
And for changing access rules we have the module "cp_mgmt_access_rule.py"
And for comparing you can use the first module I mentioned, or just change the rulebase with the second module I mentioned, and see in the output of the playbook if the rulebase was changed.

Thanks , Or