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 / dnac / playbooks / application_sets.yml
Size: Mime:
- hosts: dnac_servers
  vars_files:
    - credentials.yml
  gather_facts: no
  tasks:
  - name: Create an application set
    cisco.dnac.application_sets:
      dnac_host: "{{dnac_host}}"
      dnac_username: "{{dnac_username}}"
      dnac_password: "{{dnac_password}}"
      dnac_verify: "{{dnac_verify}}"
      dnac_debug: "{{dnac_debug}}"
      state: present
      payload:
        - name: AppSet1
    register: application_set_result

  - name: Get task info
    cisco.dnac.task_info:
      dnac_host: "{{dnac_host}}"
      dnac_username: "{{dnac_username}}"
      dnac_password: "{{dnac_password}}"
      dnac_verify: "{{dnac_verify}}"
      taskId: "{{ application_set_result.dnac_response.response.taskId }}"
    when:
      - application_set_result.dnac_response is defined
      - application_set_result.dnac_response.response is defined
      - application_set_result.dnac_response.response.taskId is defined
    register: task_result

  - name: Show new application_set
    debug:
      msg: "{{ application_set_result }}"
    when:
      - application_set_result is defined

  - name: Show retrieved task
    debug:
      msg: "{{ task_result.dnac_response.response }}"
    when: 
      - task_result is defined
      - task_result.dnac_response is defined