mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Tested against IOS version (#28559)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
parent
340f52ae96
commit
4070a22c5b
10 changed files with 22 additions and 2 deletions
|
@ -32,6 +32,8 @@ description:
|
||||||
running Cisco IOS. It allows playbooks to add or remote
|
running Cisco IOS. It allows playbooks to add or remote
|
||||||
banner text from the active running configuration.
|
banner text from the active running configuration.
|
||||||
extends_documentation_fragment: ios
|
extends_documentation_fragment: ios
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
banner:
|
banner:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -35,6 +35,8 @@ description:
|
||||||
- This module does not support running commands in configuration mode.
|
- This module does not support running commands in configuration mode.
|
||||||
Please use M(ios_config) to configure IOS devices.
|
Please use M(ios_config) to configure IOS devices.
|
||||||
extends_documentation_fragment: ios
|
extends_documentation_fragment: ios
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
commands:
|
commands:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -33,6 +33,8 @@ description:
|
||||||
an implementation for working with IOS configuration sections in
|
an implementation for working with IOS configuration sections in
|
||||||
a deterministic way.
|
a deterministic way.
|
||||||
extends_documentation_fragment: ios
|
extends_documentation_fragment: ios
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
lines:
|
lines:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -33,6 +33,8 @@ description:
|
||||||
module will always collect a base set of facts from the device
|
module will always collect a base set of facts from the device
|
||||||
and can enable or disable collection of additional facts.
|
and can enable or disable collection of additional facts.
|
||||||
extends_documentation_fragment: ios
|
extends_documentation_fragment: ios
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
gather_subset:
|
gather_subset:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -22,6 +22,8 @@ short_description: Manage Interface on Cisco IOS network devices
|
||||||
description:
|
description:
|
||||||
- This module provides declarative management of Interfaces
|
- This module provides declarative management of Interfaces
|
||||||
on Cisco IOS network devices.
|
on Cisco IOS network devices.
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -27,11 +27,13 @@ DOCUMENTATION = """
|
||||||
---
|
---
|
||||||
module: ios_logging
|
module: ios_logging
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
author: "Trishna Guha (@trishnag)"
|
author: "Trishna Guha (@trishnaguha)"
|
||||||
short_description: Manage logging on network devices
|
short_description: Manage logging on network devices
|
||||||
description:
|
description:
|
||||||
- This module provides declarative management of logging
|
- This module provides declarative management of logging
|
||||||
on Cisco Ios devices.
|
on Cisco Ios devices.
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
dest:
|
dest:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -33,6 +33,8 @@ short_description: Manage static IP routes on Cisco IOS network devices
|
||||||
description:
|
description:
|
||||||
- This module provides declarative management of static
|
- This module provides declarative management of static
|
||||||
IP routes on Cisco IOS network devices.
|
IP routes on Cisco IOS network devices.
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
prefix:
|
prefix:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -33,6 +33,8 @@ description:
|
||||||
parameters or remove those parameters from the device active
|
parameters or remove those parameters from the device active
|
||||||
configuration.
|
configuration.
|
||||||
extends_documentation_fragment: ios
|
extends_documentation_fragment: ios
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
hostname:
|
hostname:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -27,7 +27,7 @@ DOCUMENTATION = """
|
||||||
---
|
---
|
||||||
module: ios_user
|
module: ios_user
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
author: "Trishna Guha (@trishnag)"
|
author: "Trishna Guha (@trishnaguha)"
|
||||||
short_description: Manage the aggregate of local users on Cisco IOS device
|
short_description: Manage the aggregate of local users on Cisco IOS device
|
||||||
description:
|
description:
|
||||||
- This module provides declarative management of the local usernames
|
- This module provides declarative management of the local usernames
|
||||||
|
@ -35,6 +35,8 @@ description:
|
||||||
either individual usernames or the aggregate of usernames in the
|
either individual usernames or the aggregate of usernames in the
|
||||||
current running config. It also supports purging usernames from the
|
current running config. It also supports purging usernames from the
|
||||||
configuration that are not explicitly defined.
|
configuration that are not explicitly defined.
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
aggregate:
|
aggregate:
|
||||||
description:
|
description:
|
||||||
|
|
|
@ -33,6 +33,8 @@ description:
|
||||||
the entire VRF collection. It also supports purging VRF definitions from
|
the entire VRF collection. It also supports purging VRF definitions from
|
||||||
the configuration that are not explicitly defined.
|
the configuration that are not explicitly defined.
|
||||||
extends_documentation_fragment: ios
|
extends_documentation_fragment: ios
|
||||||
|
notes:
|
||||||
|
- Tested against IOS 15.6
|
||||||
options:
|
options:
|
||||||
vrfs:
|
vrfs:
|
||||||
description:
|
description:
|
||||||
|
|
Loading…
Reference in a new issue