Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions playbooks/brownfield_user_role_playbook_generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
- name: Generate YAML Configuration for user and role details
hosts: localhost
connection: local
gather_facts: false # This space must be "no". It was set to false due to formatting errors.but the correct value is "no".
vars_files:
- "credentials.yml"
tasks:
- name: Generate YAML Configuration for user and role details
cisco.dnac.brownfield_user_role_playbook_generator:
dnac_host: "{{ dnac_host }}"
dnac_username: "{{ dnac_username }}"
dnac_password: "{{ dnac_password }}"
dnac_verify: "{{ dnac_verify }}"
dnac_port: "{{ dnac_port }}"
dnac_version: "{{ dnac_version }}"
dnac_debug: "{{ dnac_debug }}"
dnac_log: true
dnac_log_level: DEBUG
config_verify: true
dnac_api_task_timeout: 1000
dnac_task_poll_interval: 1
state: merged
config:
- file_path: "/Users/priyadharshini/Downloads/specific_userrole_details_info"
component_specific_filters:
components_list: ["role_details", "user_details"]
Loading
Loading