Skip to content

Commit

Permalink
ec2_eip - remove wait_timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed May 25, 2022
1 parent d04ab42 commit 4f7af7d
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 4f7af7d

Please sign in to comment.