-
Notifications
You must be signed in to change notification settings - Fork 49
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 #140 from madhansansel/main
Changes in intent module to support discovery, provisioning and more operations in swim, site, template and pnp intent modules
- Loading branch information
Showing
24 changed files
with
7,148 additions
and
2,427 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
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 |
---|---|---|
@@ -1,16 +1,20 @@ | ||
--- | ||
namespace: cisco | ||
name: dnac | ||
version: 6.9.0 | ||
version: 6.10.0 | ||
readme: README.md | ||
authors: | ||
- Rafael Campos <[email protected]> | ||
- William Astorga <[email protected]> | ||
- Jose Bogarin <[email protected]> | ||
- Bryan Vargas <[email protected]> | ||
- Francisco Muñoz <[email protected]> | ||
- Madhan Sankaranarayanan (@madhansansel) | ||
- Madhan Sankaranarayanan <[email protected]> | ||
- Rishita Chowdhary (@rishitachowdhary) | ||
- Muthu Rakesh Babu <[email protected]> | ||
- Akash Bhaskaran <[email protected]> | ||
- Abinash Mishra <[email protected]> | ||
- Abhishek Maheshwari <[email protected]> | ||
description: Ansible Modules for Cisco DNA Center | ||
license_file: "LICENSE" | ||
tags: | ||
|
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
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
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
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,30 @@ | ||
--- | ||
- name: Provision and Re-provision wired and wireless devices | ||
hosts: localhost | ||
connection: local | ||
gather_facts: no | ||
|
||
vars_files: | ||
- "{{ CLUSTERFILE }}" | ||
|
||
vars: | ||
dnac_login: &dnac_login | ||
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 }}" | ||
|
||
tasks: | ||
- name: Provision a wired device to a site | ||
cisco.dnac.provision_intent: | ||
<<: *dnac_login | ||
dnac_log: True | ||
state: merged | ||
config: | ||
- site_name: Global/USA/San Francisco/BGL_18 | ||
management_ip_address: 204.1.2.2 | ||
|
||
|
Oops, something went wrong.