Skip to content

Commit

Permalink
fix: Fixed Service zpa_service_edge_groups_info playbook example (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr authored Sep 23, 2024
1 parent 9ce11ee commit c7e9b96
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Zscaler Private Access (ZPA) Ansible Playbooks

## 1.1.1 (September, 23 2024)

### Notes

- Python Versions: **v3.9, v3.10, v3.11**

### Feature

* - [PR #3](https://github.com/zscaler/zpacloud-playbooks/pull/7) Fixed Service `zpa_service_edge_groups_info` playbook example.

## 1.1.0 (September, 3 2024)

### Notes
Expand Down
10 changes: 5 additions & 5 deletions zpa_service_edge_groups_info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

tasks:
- name: Gather Detail Information of All Service Edge Groups
zscaler.zpacloud.zpa_service_edge_groups:
zscaler.zpacloud.zpa_service_edge_groups_info:
provider: "{{ zpa_cloud }}"
register: service_edge_groups

Expand All @@ -43,19 +43,19 @@
msg: "{{ service_edge_groups }}"

- name: Gather Details of All Service Edge Groups by Name
zscaler.zpacloud.zpa_service_edge_groups:
zscaler.zpacloud.zpa_service_edge_groups_info:
provider: "{{ zpa_cloud }}"
name: Example
name: Example100
register: service_edge_group_name

- name: Service Edge Groups by Name
ansible.builtin.debug:
msg: "{{ service_edge_group_name }}"

- name: Gather Details of All Service Edge Groups by ID
zscaler.zpacloud.zpa_service_edge_groups:
zscaler.zpacloud.zpa_service_edge_groups_info:
provider: "{{ zpa_cloud }}"
id: "216196257331291969"
id: "216199618143463025"
register: service_edge_group_id

- name: Service Edge Groups by ID
Expand Down

0 comments on commit c7e9b96

Please sign in to comment.