mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-01 12:40:22 -07:00
Module DOCUMENTATION should match argspec (#34895)
* Module DOCUMENTATION should match argspec Large update of many modules so that DOCUMENTATION option name and aliases match those defined in the argspec. Issues identified by https://github.com/ansible/ansible/pull/34809 In addition to many typos and missing aliases, the following notable changes were made: * Create `module_docs_fragments/url.py` for `url_argument_spec` * `dellos*_command` shouldn't have ever had `waitfor` (was incorrectly copied) * `ce_aaa_server_host.py` `s/raduis_server_type/radius_server_type/g` * `Junos_lldp` enable should be part of `state`.
This commit is contained in:
parent
c386ae9498
commit
195beebcb4
123 changed files with 406 additions and 132 deletions
|
@ -17,6 +17,9 @@ description:
|
|||
The connection may later be associated or disassociated with a link aggregation group.
|
||||
version_added: "2.4"
|
||||
author: "Sloane Hertel (@s-hertel)"
|
||||
extends_documentation_fragment:
|
||||
- aws
|
||||
- ec2
|
||||
requirements:
|
||||
- boto3
|
||||
- botocore
|
||||
|
@ -36,7 +39,7 @@ options:
|
|||
description:
|
||||
- The ID of the Direct Connect connection. I(name) or I(connection_id) is
|
||||
required to recreate or delete a connection. Modifying attributes of a
|
||||
connection with I(force_update) will result in a new Direct Connect connection ID.
|
||||
connection with I(forced_update) will result in a new Direct Connect connection ID.
|
||||
location:
|
||||
description:
|
||||
- Where the Direct Connect connection is located. Required when I(state=present).
|
||||
|
@ -50,7 +53,7 @@ options:
|
|||
description:
|
||||
- The ID of the link aggregation group you want to associate with the connection.
|
||||
This is optional in case a stand-alone connection is desired.
|
||||
force_update:
|
||||
forced_update:
|
||||
description:
|
||||
- To modify bandwidth or location the connection will need to be deleted and recreated.
|
||||
By default this will not happen - this option must be set to True.
|
||||
|
@ -80,7 +83,7 @@ aws_direct_connect_connection:
|
|||
name: ansible-test-connection
|
||||
location: EqDC2
|
||||
bandwidth: 10Gbps
|
||||
force_update: True
|
||||
forced_update: True
|
||||
|
||||
# delete the connection
|
||||
aws_direct_connect_connection:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue