Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fixed Service zpa_service_edge_groups_info playbook example #7

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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