ec2 - count_tag can be an int, str, list, or dict (#55046)

This commit is contained in:
Sloane Hertel 2019-04-10 15:11:18 -04:00 committed by GitHub
parent 04e5c550a8
commit a99bb0e493
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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']),