willguibr.zpacloud_ansible.zpa_app_connector_groups_info (2.9.0) — module

Gather information about an app connector group

| "added in version" 1.0.0 of willguibr.zpacloud_ansible"

Authors: William Guilherme (@willguibr)

Install collection

Install with ansible-galaxy collection install willguibr.zpacloud_ansible:==2.9.0


Add to requirements.yml

  collections:
    - name: willguibr.zpacloud_ansible
      version: 2.9.0

Description

This module can be used to gather information about an app connector group.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: App Connector Groups
  hosts: localhost
  tasks:
    - name: Gather information about all App Connector Groups
      willguibr.zpacloud_ansible.zpa_app_connector_groups_info:
        #name: "USA App Connector Group"
    - name: Gather information about all App Connector Groups
      willguibr.zpacloud_ansible.zpa_app_connector_groups_info:

    - name: Gather information about App Connector Group with given ID
      willguibr.zpacloud_ansible.zpa_app_connector_groups_info:
        id: "198288282"
      register: resp_out

    - name: Gather information about App Connector Group with given name
      willguibr.zpacloud_ansible.zpa_app_connector_groups_info:
        name: "example"
      register: resp_out
    - debug:
        msg: "{{ resp_out.name }}"

Inputs

    
id:
    description:
    - ID of the App Connector Group.
    required: false
    type: str

name:
    description:
    - Name of the App Connector Group.
    required: false
    type: str

Outputs

data:
  description: App Connector Group information
  elements: dict
  returned: success
  sample:
  - CA: null
    US": null
    USA": null
    city_country            = "California: null
    country_code            = "US": null
    description             = "Example": null
    dns_query_type          = "IPV4": null
    enabled                 = true: null
    id                      = "82827282828": null
    latitude                = "37.3382082": null
    location                = "San Jose: null
    longitude               = "-121.8863286": null
    name                    = "Example": null
    override_version_profile= true: null
    upgrade_day             = "SUNDAY": null
    upgrade_time_in_secs    = "66600": null
    version_profile_id      = 0: null
  type: list