mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-12 11:24:00 -07:00
E325 removal - Part I (#49136)
Remove E325 from Amazon modules Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
d14dee9ceb
commit
9b732df436
43 changed files with 104 additions and 61 deletions
|
@ -186,6 +186,7 @@ options:
|
|||
description:
|
||||
- whether instance is using optimized EBS volumes, see U(https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html).
|
||||
default: 'no'
|
||||
type: bool
|
||||
exact_count:
|
||||
version_added: "1.5"
|
||||
description:
|
||||
|
@ -1598,12 +1599,12 @@ def main():
|
|||
source_dest_check=dict(type='bool', default=None),
|
||||
termination_protection=dict(type='bool', default=None),
|
||||
state=dict(default='present', choices=['present', 'absent', 'running', 'restarted', 'stopped']),
|
||||
instance_initiated_shutdown_behavior=dict(default=None, choices=['stop', 'terminate']),
|
||||
instance_initiated_shutdown_behavior=dict(default='stop', choices=['stop', 'terminate']),
|
||||
exact_count=dict(type='int', default=None),
|
||||
count_tag=dict(),
|
||||
volumes=dict(type='list'),
|
||||
ebs_optimized=dict(type='bool', default=False),
|
||||
tenancy=dict(default='default'),
|
||||
tenancy=dict(default='default', choices=['default', 'dedicated']),
|
||||
network_interfaces=dict(type='list', aliases=['network_interface'])
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue