Skip to content

Commit

Permalink
ec2_eip - remove wait_timeout (#1159)
Browse files Browse the repository at this point in the history
ec2_eip - remove wait_timeout

SUMMARY
Remove the wait_timeout option, it has always been ignored by the module
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
ec2_eip
ADDITIONAL INFORMATION
See also: ansible/ansible#64230

Reviewed-by: Markus Bergholz <git@osuv.de>
  • Loading branch information
tremble authored May 25, 2022
1 parent da53c54 commit 9460ca1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1159-ec2_eip-remove-wait_timeout.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
removed_features:
- ec2_eip - The ``wait_timeout`` option has been removed. It has always been ignored by the module (https://github.com/ansible-collections/community.aws/pull/1159).
5 changes: 0 additions & 5 deletions plugins/modules/ec2_eip.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,6 @@
- Allocates the new Elastic IP from the provided public IPv4 pool (BYOIP)
only applies to newly allocated Elastic IPs, isn't validated when I(reuse_existing_ip_allowed=true).
type: str
wait_timeout:
description:
- The I(wait_timeout) option does nothing and will be removed after 2022-06-01
type: int
extends_documentation_fragment:
- amazon.aws.aws
- amazon.aws.ec2
Expand Down Expand Up @@ -546,7 +542,6 @@ def main():
default=False),
release_on_disassociation=dict(required=False, type='bool', default=False),
allow_reassociation=dict(type='bool', default=False),
wait_timeout=dict(type='int', removed_at_date='2022-06-01', removed_from_collection='community.aws'),
private_ip_address=dict(),
tags=dict(required=False, type='dict'),
purge_tags=dict(required=False, type='bool', default=True),
Expand Down

0 comments on commit 9460ca1

Please sign in to comment.