Files
toallab-automation/roles/ansible-network.cisco_ios/tasks/configure_user.yaml
Patrick Toal 6e2205a046 Adding Netbox
2019-05-06 00:34:45 -04:00

50 lines
1.2 KiB
YAML

---
- name: "check if user(s) to configure is provided"
fail:
msg: "no user provided to configure"
when: users is not defined
delegate_to: localhost
- name: "check for required fact - name"
fail:
msg: "missing required fact: name"
with_items: "{{ users }}"
when: ( user.name is not defined )
loop_control:
loop_var: user
delegate_to: localhost
- name: "fetch existing user account details"
block:
- name: "fetch user config with section"
cli:
command: show running-config | section user
register: user_config
rescue:
- name: "fallback fetching full running-config"
cli:
command: show running-config
register: user_config
- name: "filter out users through user_manager"
ios_user_manager:
new_users: "{{ users }}"
user_config: "{{ user_config.stdout }}"
register: filtered_users
delegate_to: localhost
- name: "set users to be configured"
set_fact:
users: "{{ filtered_users.stdout }}"
delegate_to: localhost
- name: "fetch template for configuring user(s)"
set_fact:
config_manager_text: "{{ lookup('config_template', 'configure_user.j2') }}"
when: users
delegate_to: localhost
- include_tasks: config_manager/load.yaml
when: users
delegate_to: localhost