Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Undocumented IOPS return #702

Merged
merged 3 commits into from
Sep 24, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/community.aws.rds_instance_info_module.rst
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,24 @@ Common return values are documented `here <https://docs.ansible.com/ansible/late
<div style="font-size: smaller"><b>Sample:</b></div>
<div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">2017-10-10T04:00:07.434000+00:00</div>
</td>
</tr>
markuman marked this conversation as resolved.
Show resolved Hide resolved
<tr>
<td class="elbow-placeholder">&nbsp;</td>
<td colspan="4">
<div class="ansibleOptionAnchor" id="return-"></div>
<b>iops</b>
<a class="ansibleOptionLink" href="#return-" title="Permalink to this return value"></a>
<div style="font-size: small">
<span style="color: purple">string</span>
</div>
</td>
<td>always</td>
<td>
<div>The Provisioned IOPS value for the DB instance.</div>
<br/>
<div style="font-size: smaller"><b>Sample:</b></div>
<div style="font-size: smaller; color: blue; word-wrap: break-word; word-break: break-all;">1000</div>
</td>
</tr>
<tr>
<td class="elbow-placeholder">&nbsp;</td>
Expand Down
5 changes: 5 additions & 0 deletions plugins/modules/rds_instance_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,11 @@
returned: always
type: str
sample: '2017-10-10T04:00:07.434000+00:00'
iops:
description: The Provisioned IOPS value for the DB instance.
returned: always
type: int
sample: 1000
kms_key_id:
description: KMS Key ID
returned: always
Expand Down