Note
This module is part of the community.network collection (version 5.1.0).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.network.
To use it in a playbook, specify: community.network.edgeos_config.
Note
The community.network collection has been deprecated and will be removed from Ansible 12. See the discussion thread for more information.
version 6.0.0
This collection and all content in it is unmaintained and deprecated.
Unknown.
connection: network_cli in order to work properly.Note
This module has a corresponding action plugin.
Aliases: network.edgeos.edgeos_config
Parameter | Comments |
|---|---|
backup boolean | The Choices:
|
backup_options dictionary | This is a dict object containing configurable options related to backup file path. The value of this option is read only when |
|
dir_path path |
This option provides the path ending with directory name in which the backup configuration file will be stored. If the directory does not exist it will be first created and the filename is either the value of |
|
filename string |
The filename to be used to store the backup configuration. If the filename is not given it will be generated based on the hostname, current time and date in format defined by <hostname>_config.<current-date>@<current-time> |
comment string | Allows a commit description to be specified to be included when the configuration is committed. If the configuration is not changed or committed, this argument is ignored. Default: |
config string | The |
lines list / elements=string | The ordered set of configuration lines to be managed and compared with the existing configuration on the remote device. |
match string | The Choices:
|
save boolean | The Choices:
|
src string | The |
Note
ANSIBLE_PERSISTENT_COMMAND_TIMEOUT to 30 is recommended since the save command can take longer than the default of 10 seconds on some EdgeOS hardware.- name: Configure the remote device
community.network.edgeos_config:
lines:
- set system host-name {{ inventory_hostname }}
- set service lldp
- delete service dhcp-server
- name: Backup and load from file
community.network.edgeos_config:
src: edgeos.cfg
backup: true
- name: Configurable backup path
community.network.edgeos_config:
src: edgeos.cfg
backup: true
backup_options:
filename: backup.cfg
dir_path: /home/user
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
|---|---|
backup_path string | The full path to the backup file Returned: when backup is yes Sample: |
commands list / elements=string | The list of configuration commands sent to the device Returned: always Sample: |
© 2012–2018 Michael DeHaan
© 2018–2025 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/network/edgeos_config_module.html