da75d6b734
As of ansible 2.3, it is no longer possible to use delegate_to with a host other than localhost. Use of a jump host can be enabled via setting ProxyCommand in ansible_ssh_common_args as for other hosts.
16 lines
550 B
YAML
16 lines
550 B
YAML
---
|
|
# 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: {}
|