forked from cisco-en-programmability/dnacenter-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cisco-en-programmability#83 from madhansansel/main
Latest Changes - September 29, 2024
- Loading branch information
Showing
7 changed files
with
548 additions
and
424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
- name: Configure device credentials on Cisco Catalyst Center | ||
hosts: localhost | ||
connection: local | ||
gather_facts: no | ||
vars_files: | ||
- "credentials.yml" | ||
tasks: | ||
- name: Provision a wired device to a site | ||
cisco.dnac.provision_workflow_manager: | ||
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: | ||
- site_name_hierarchy: Global/Chennai/LTTS/FLOOR1 | ||
management_ip_address: 1.1.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.