willguibr.zpacloud.zpa_provisioning_key_info (1.1.1) — module

Retrieves details about a Provisioning Key.

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

Authors: William Guilherme (@willguibr)

Install collection

Install with ansible-galaxy collection install willguibr.zpacloud:==1.1.1


Add to requirements.yml

  collections:
    - name: willguibr.zpacloud
      version: 1.1.1

Description

This module will allow the retrieval of information abouta Provisioning Key by association type (CONNECTOR_GRP or SERVICE_EDGE_GRP).


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather Details of All SERVICE_EDGE_GRP Provisioning Keys
  willguibr.zpacloud.zpa_provisioning_key_info:
    association_type: "SERVICE_EDGE_GRP"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather Details of All SERVICE_EDGE_GRP Provisioning Keys by Name
  willguibr.zpacloud.zpa_provisioning_key_info:
    name: "Example Service Edge Group"
    association_type: "SERVICE_EDGE_GRP"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Gather Details of All SERVICE_EDGE_GRP Provisioning Keys by ID
  willguibr.zpacloud.zpa_provisioning_key_info:
    id: "8691"
    association_type: "SERVICE_EDGE_GRP"

Inputs

    
id:
    description:
    - ID of the provisioning key.
    required: false
    type: str

name:
    description:
    - Name of the provisioning key.
    required: false
    type: str

client_id:
    description: ''
    required: false
    type: str

customer_id:
    description: ''
    required: false
    type: str

client_secret:
    description: ''
    required: false
    type: str

association_type:
    choices:
    - CONNECTOR_GRP
    - SERVICE_EDGE_GRP
    description:
    - Specifies the provisioning key type for App Connectors or ZPA Private Service Edges.
    - The supported values are CONNECTOR_GRP and SERVICE_EDGE_GRP.
    required: true
    type: str