CheckPointAnsibleGAIACollection
CheckPointAnsibleGAIACollection copied to clipboard
An Ansible collection provides control over a Check Point machine using Check Point's web-services APIs.
On this URL https://galaxy.ansible.com/check_point/gaia when you click on "docs site" you go on inexisting url. regards
I don't find any documentation so i ask here for information. I am looking to gaia eguivalent commands to console ones. How for example with ansible gaia collection can i...
# Subject unable to use check_point.gaia.cp_gaia_physical_interfaces_facts # Environment ansible 2.9.24 python version = 3.6.8 (default, May 6 2020, 12:04:35) [GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] ansible.netcommon collection: "version": "2.6.1", check_point.gaia...
According to Gaia API Docs, only "address" and "mask_length" are needed. If providing other options like "limit" the API call will fail. https://sc1.checkpoint.com/documents/latest/GaiaAPIs/?#web/show-static-route~v1.7%20
Hello, consider the following playbook (_it is simplified to show the use case_) ```yaml - hosts: cp_gaia gather_facts: false vars: enabled_ciphers: - aes128-ctr - [email protected] - aes192-ctr - aes256-ctr -...
We are using this collection to query the users on gaia gateways ```yaml - name: Gather current Gaia users check_point.gaia.cp_gaia_user_facts: register: current_users tags: - always - name: List of current...
```yaml - name: Run the first time wizard hosts: pod5-fw gather_facts: false tasks: - name: Set grub password check_point.gaia.cp_gaia_grub_password: password: bogus - name: Gaia Save Config check_point.gaia.cp_gaia_run_script: script: "save config"...
It's not possible to change admin user password with cp_gaia_user module, it works for other users The playbook fails with the error: "msg": "Checkpoint device returned error 400 with message...
* Add grub_password parameter * Update documentation for grub_password * Update example to include grub_password parameter