check_point.gaia.cp_gaia_allowed_clients_facts (5.0.1) — module

Show the configuration of allowed clients.

| "added in version" 3.0.0 of check_point.gaia"

Authors: Ameer Asli (@chkp-ameera)

Install collection

Install with ansible-galaxy collection install check_point.gaia:==5.0.1


Add to requirements.yml

  collections:
    - name: check_point.gaia
      version: 5.0.1

Description

Show the configuration of allowed clients.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Show allowed clients
  check_point.gaia.cp_gaia_allowed_clients_facts:

Inputs

    
version:
    description: Gaia API version for example 1.6.
    required: false
    type: str

Outputs

ansible_facts:
  contains:
    allowed_any_host:
      description:
      - Allowed any host to access the server.
      returned: always
      type: bool
    allowed_hosts:
      description:
      - Lists of allowed hosts.
      elements: str
      returned: always
      type: list
    allowed_networks:
      contains:
        mask_length:
          description: The network mask length.
          type: int
        subnet:
          description: The network subnet.
          type: str
      description:
      - List of allowed networks.
      elements: dict
      returned: always
      type: list
  description: The checkpoint object facts.
  returned: always.
  type: dict