Skip to content

Commit

Permalink
Updates for working with proxies in NSO (#37)
Browse files Browse the repository at this point in the history
* Added option to specify remote secondary when defining an auth group

* Added option to specify NED settings when adding host to NSO (useful for proxy settings)

* Updated release version to 1.2.14
  • Loading branch information
jasonking3 authored Dec 9, 2023
1 parent d2c3c2d commit 2ac0b98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: ciscops
name: mdd

# The version of the collection. Must be compatible with semantic versioning
version: 1.2.13
version: 1.2.14

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
1 change: 1 addition & 0 deletions roles/nso/tasks/add_auth_groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
default-map:
remote-name: "{{ item.value.remote_name }}"
remote-password: "{{ item.value.remote_password }}"
remote-secondary-password: "{{ item.value.remote_secondary_password | default(omit)}}"
loop: "{{ nso_auth_groups | dict2items }}"
no_log: true

Expand Down
1 change: 1 addition & 0 deletions roles/nso/tasks/add_host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
description: CONFIGURED BY ANSIBLE!
name: "{{ device_name | default(inventory_hostname) }}"
authgroup: "{{ nso_auth_group | default('default') }}"
ned-settings: "{{ ned_settings | default(omit) }}"
device-type:
cli:
ned-id: "{{ device_ned | default(nso_default_ned) }}"
Expand Down

0 comments on commit 2ac0b98

Please sign in to comment.