Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ansible / cisco / ise / playbooks / endpoint_group.yml
Size: Mime:
---
- hosts: ise_servers
  gather_facts: false
  tasks:
    - name: Create endpoint group
      cisco.ise.endpoint_group:
        ise_hostname: "{{ ise_hostname }}"
        ise_username: "{{ ise_username }}"
        ise_password: "{{ ise_password }}"
        ise_verify: "{{ ise_verify }}"
        name: Sony-Device-X
        description: "Identity Group for Profile: Sony-Device-X"
      register: endpoint_group

    - name: Print endpoint group
      ansible.builtin.debug:
        var: endpoint_group