CheckPointSW / CheckPointAnsibleGAIACollection

An Ansible collection provides control over a Check Point machine using Check Point's web-services APIs.
20 stars 21 forks source link

Error in playbook example? #5

Closed hvdkooij closed 3 years ago

hvdkooij commented 3 years ago

I think there is an error in the playbook example:

---
- name: playbook name
  hosts: check_point
  connection: httpapi
  tasks:
    - name: task to have network
      check_point.mgmt.cp_gaia_hostname:
        name: "newhost"

I think it shoud be:

---
- name: playbook name
  hosts: check_point
  connection: httpapi
  tasks:
    - name: task to have network
      check_point.gaia.cp_gaia_hostname:
        name: "newhost"
chkp-yuvalfe commented 3 years ago

Hi @hvdkooij, you absolutely right. Fixed. Thanks!