1
medium
An Ansible playbook uses the cisco.dnac.site module to create a new building site. The playbook is:
- name: Create building site cisco.dnac.site: host: "{{ dnac_host }}"
username: "{{ dnac_username }}"password: "{{ dnac_password }}" validate_certs: no state: present site: name: Building-B type: building parentName: Area-1 address: "123 Main St" latitude: 37.7749 longitude: -122.4194 register: result
What is the purpose of the 'parentName' parameter?