
Role renamed to junos-switch. Python dependencies are installed. Support for multiple configuration types, including 'set', 'text', and 'json'.
19 lines
627 B
YAML
19 lines
627 B
YAML
---
|
|
# Host on which to execute Junos Ansible modules.
|
|
junos_switch_delegate_to:
|
|
|
|
# Authentication provider information.
|
|
junos_switch_provider:
|
|
|
|
# Format of configuration in junos_switch_config and
|
|
# junos_switch_interface_config. May be one of 'set', 'text' or 'json'.
|
|
junos_switch_config_format: text
|
|
|
|
# List of configuration lines to apply to the switch.
|
|
junos_switch_config: []
|
|
|
|
# Interface configuration. Dict mapping switch interface names to configuration
|
|
# dicts. Each dict contains a 'description' item and a 'config' item which
|
|
# should contain a list of per-interface configuration.
|
|
junos_switch_interface_config: {}
|