QuestionQ25

Infrastructure as Code

Drag the appropriate YAML components from the bottom to the blanks in the Ansible playbook to create a new application profile named "DbApp" by using the Ansible ACI module. Not every option is used.

Drag & Drop
tenant_name: MyCompany
ap: DbApp
application_name: DbApp
tenant: MyCompany
app_name: DbApp
state: present
aci_ap:
state: query
- name: Add a new AP
  
    host: apic
    username: admin
    password: SomeSecretPassword
    
    
    description: default ap
    
Explanation

The aci_ap module manages an ACI application profile. Its tenant parameter identifies the tenant, ap gives the application-profile name, and state: present creates or maintains that profile.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!