mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-02 14:40:19 -07:00
ACI: Fix module parameters (#50051)
* Fix parameter type of private_key * Fix parameters of various ACI modules
This commit is contained in:
parent
cf00880ab3
commit
c1ac87794e
6 changed files with 12 additions and 12 deletions
|
@ -42,7 +42,6 @@ options:
|
|||
- The hypervisor functions of the AEP.
|
||||
- C(no) will disable the infrastructure vlan if it is enabled.
|
||||
type: bool
|
||||
default: 'no'
|
||||
aliases: [ infrastructure_vlan ]
|
||||
version_added: '2.5'
|
||||
state:
|
||||
|
|
|
@ -68,7 +68,7 @@ options:
|
|||
interface subconfiguration mode command.
|
||||
- Accepted values range between C(1) and C(450).
|
||||
- The APIC defaults to C(0) when unset during creation.
|
||||
type: str
|
||||
type: int
|
||||
controls:
|
||||
description:
|
||||
- The interface policy controls.
|
||||
|
|
|
@ -74,8 +74,9 @@ options:
|
|||
choices: [ bgp, eigrp, ospf, pim, static ]
|
||||
asn:
|
||||
description:
|
||||
- The AS number for the L3Out. Only applicable when using 'eigrp' as the l3protocol
|
||||
type: str
|
||||
- The AS number for the L3Out.
|
||||
- Only applicable when using 'eigrp' as the l3protocol
|
||||
type: int
|
||||
aliases: [ as_number ]
|
||||
version_added: '2.8'
|
||||
description:
|
||||
|
|
|
@ -62,7 +62,7 @@ options:
|
|||
- This may be convenient to template simple requests.
|
||||
- For anything complex use the C(template) lookup plugin (see examples)
|
||||
or the M(template) module with parameter C(src).
|
||||
type: str
|
||||
type: raw
|
||||
src:
|
||||
description:
|
||||
- Name of the absolute path of the filname that includes the body
|
||||
|
|
|
@ -100,7 +100,7 @@ options:
|
|||
- When C(interface_type) is C(switch_port), C(port_channel), or C(fex), then C(leafs) is a string of the leaf ID.
|
||||
- When C(interface_type) is C(vpc), then C(leafs) is a list with both leaf IDs.
|
||||
- The C(leafs) value is usually something like '101' or '101-102' depending on C(connection_type).
|
||||
type: str
|
||||
type: list
|
||||
aliases: [ leaves, nodes, paths, switches ]
|
||||
interface:
|
||||
description:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue