Skip to content

Commit

Permalink
Merge pull request #24 from madhansansel/main
Browse files Browse the repository at this point in the history
latest changes 02/28/24
  • Loading branch information
rukapse authored Feb 28, 2024
2 parents ab968e6 + 483d7d9 commit 7c76724
Show file tree
Hide file tree
Showing 5 changed files with 1,465 additions and 617 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The following table shows the supported versions.
| 2.2.2.3 | 3.3.1 | 2.3.3 |
| 2.2.3.3 | 6.4.0 | 2.4.11 |
| 2.3.3.0 | 6.6.4 | 2.5.5 |
| 2.3.5.3 | 6.10.4 | 2.6.0 |
| 2.3.5.3 | 6.11.0 | 2.6.0 |

If your Ansible collection is older please consider updating it first.

Expand Down
3 changes: 3 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@
'.md': 'markdown',
}

# Avoid substitution of smartquotes
smartquotes = False

# The master toctree document.
master_doc = 'index'

Expand Down
52 changes: 45 additions & 7 deletions playbooks/inventory_workflow_manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
- username: "{{item.username}}"
password: "{{item.password}}"
enable_password: "{{item.enable_password}}"
ip_address: "{{item.ip_address}}"
ip_address_list: "{{item.ip_address_list}}"
cli_transport: "{{item.cli_transport}}"
snmp_auth_passphrase: "{{item.snmp_auth_passphrase}}"
snmp_auth_protocol: "{{item.snmp_auth_protocol}}"
Expand All @@ -38,18 +38,56 @@
credential_update: "{{item.credential_update}}"
clean_config: "{{item.clean_config}}"
type: "{{item.type}}"
device_added: "{{item.device_added}}"
device_resync: "{{item.device_resync}}"
reboot_device: "{{item.reboot_device}}"
update_device_role:
role: "{{item.role}}"
role_source: "{{item.role_source}}"
add_user_defined_field:
name: "{{item.name}}"
description: "{{item.description}}"
value: "{{item.value}}"
- name: Test123
description: "Added first udf for testing"
value: "value123"
- name: Test321
description: "Added second udf for testing"
value: "value321"
provision_wired_device:
site_name: "{{item.site_name}}"
- device_ip: "1.1.1.1"
site_name: "Global/USA/San Francisco/BGL_18/floor_pnp"
resync_retry_count: 200
resync_interval: 2
- device_ip: "2.2.2.2"
site_name: "Global/USA/San Francisco/BGL_18/floor_test"
resync_retry_count: 200
resync_retry_interval: 2
provision_wireless_device:
- device_ip: "1.1.1.1"
site_name: "Global/USA/BGL_18/floor_pnp"
managed_ap_locations: ["Global/USA/BGL_18/floor_pnp", "Global/USA/BGL_18/floor_test"]
dynamic_interfaces:
- interface_ip_address: 23.23.21.12
interface_netmask_in_cidr: 24
interface_gateway: "gateway"
lag_or_port_number: 12
vlan_id: 99
interface_name: "etherenet0/0"
resync_retry_count: 200
resync_retry_interval: 2
- device_ip: "2.2.2.2"
site_name: "Global/USA/BGL_18/floor_test"
managed_ap_locations: ["Global/USA/BGL_19/floor_pnp", "Global/USA/BGL_19/floor_test"]
dynamic_interfaces:
- interface_ip_address: 32.31.12.23
interface_netmask_in_cidr: 26
interface_gateway: "gateway_test"
lag_or_port_number: 33
vlan_id: 78
interface_name: "etherenet1/1"
resync_retry_count: 200
resync_retry_interval: 2
reprovision_wired_device:
- device_ip: "1.1.1.1"
site_name: "Global/USA/San Francisco/BGL_18/floor_pnp"
- device_ip: "2.2.2.2"
site_name: "Global/USA/San Francisco/BGL_18/floor_test"
update_interface_details:
description: "{{item.update_interface_details.description}}"
interface_name: "{{item.interface_name}}"
Expand Down
Loading

0 comments on commit 7c76724

Please sign in to comment.