mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #5640 from willthames/ec2_elb_docs
ec2_elb module: Minor improvements to documentation
This commit is contained in:
commit
87e7b9e5cc
1 changed files with 3 additions and 2 deletions
|
@ -17,9 +17,9 @@
|
||||||
DOCUMENTATION = """
|
DOCUMENTATION = """
|
||||||
---
|
---
|
||||||
module: ec2_elb
|
module: ec2_elb
|
||||||
short_description: De-registers or registers instances from EC2 ELB(s)
|
short_description: De-registers or registers instances from EC2 ELBs
|
||||||
description:
|
description:
|
||||||
- This module de-registers or registers an AWS EC2 instance from the ELB(s)
|
- This module de-registers or registers an AWS EC2 instance from the ELBs
|
||||||
that it belongs to.
|
that it belongs to.
|
||||||
- Returns fact "ec2_elbs" which is a list of elbs attached to the instance
|
- Returns fact "ec2_elbs" which is a list of elbs attached to the instance
|
||||||
if state=absent is passed as an argument.
|
if state=absent is passed as an argument.
|
||||||
|
@ -32,6 +32,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- register or deregister the instance
|
- register or deregister the instance
|
||||||
required: true
|
required: true
|
||||||
|
choices: ['present', 'absent']
|
||||||
|
|
||||||
instance_id:
|
instance_id:
|
||||||
description:
|
description:
|
||||||
|
|
Loading…
Reference in a new issue