Question 10 of 32 from exam 300-635-DCAUTO: Automating and Programming Cisco Data Center Solutions

Question 10 of 32 from exam 300-635-DCAUTO: Automating and Programming Cisco Data Center Solutions

Question

Which Ansible playbook fragment returns the fewest queried ACI endpoint groups? A.

- name: GET EPGS
aci_epg:
host: "{{ inventory hostname }}"
username: "{{ username }}"

password: "{{ password }}"
validate_certs: no
state: query

B.

- name: GET EPGs
aci_epg:
host {{ inventory hostname }}"
username: "{{ username }}"
password: "{{ password }}"

validate_certs: no
tenant: prod_tenant
state: query
ap: internet

C.

- name: GET EPGs
aci_epg:
host: "{{ inventory_hostname }}"
username: "{{ username }}"

password: "{{ password }}"
validate_certs: no

tenant: prod_tenant

state: query

epg: web

D.

- name: GET EPGs
aci_epg:
host: "{{ inventory hostname }}"
username: "{{ username }}"
password: "{{ password }}"

validate_certs: no
tenant: prod_tenant
state: query

ap: internet

epg: web

Explanations

D.