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
26 changes: 26 additions & 0 deletions playbooks/brownfield_network_settings_playbook_generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
- name: Configure reports on Cisco Catalyst Center
hosts: dnac_servers
vars_files:
- credentials.yml
gather_facts: false
connection: local
tasks:
- name: Generate YAML Configuration using explicit components list
cisco.dnac.brownfield_network_settings_playbook_generator:
dnac_host: "{{dnac_host}}"

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_version}} -> {{ dnac_version }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_verify}} -> {{ dnac_verify }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_username}} -> {{ dnac_username }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_port}} -> {{ dnac_port }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_password}} -> {{ dnac_password }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_log_level}} -> {{ dnac_log_level }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_host}} -> {{ dnac_host }}

Check failure on line 11 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

jinja[spacing]

Jinja2 spacing could be improved: {{dnac_debug}} -> {{ dnac_debug }}
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: "{{dnac_log_level}}"
state: merged
config:
# - file_path: "/tmp/network_settings_automation_config.yml"
# global_filters:

Check failure on line 23 in playbooks/brownfield_network_settings_playbook_generator.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

yaml[comments-indentation]

Comment not indented like content
# ip_address_list: ["192.168.1.10", "192.168.1.11"]
- component_specific_filters:
components_list: ["global_pool_details"]
Loading
Loading