mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ec2 - count_tag can be an int, str, list, or dict (#55046)
This commit is contained in:
parent
04e5c550a8
commit
a99bb0e493
1 changed files with 1 additions and 1 deletions
|
@ -1642,7 +1642,7 @@ def main():
|
|||
state=dict(default='present', choices=['present', 'absent', 'running', 'restarted', 'stopped']),
|
||||
instance_initiated_shutdown_behavior=dict(default='stop', choices=['stop', 'terminate']),
|
||||
exact_count=dict(type='int', default=None),
|
||||
count_tag=dict(),
|
||||
count_tag=dict(type='raw'),
|
||||
volumes=dict(type='list'),
|
||||
ebs_optimized=dict(type='bool', default=False),
|
||||
tenancy=dict(default='default', choices=['default', 'dedicated']),
|
||||
|
|
Loading…
Add table
Reference in a new issue