Skip to content

Commit

Permalink
Merge pull request ansible#6640 from falloutdurham/ec2_count
Browse files Browse the repository at this point in the history
ec2: Adding type int for count (in line with other cloud modules)
  • Loading branch information
mpdehaan committed Mar 23, 2014
2 parents fba2f1f + bebb11a commit 503327d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/cloud/ec2
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ def main():
spot_price = dict(),
image = dict(),
kernel = dict(),
count = dict(default='1'),
count = dict(type='int', default='1'),
monitoring = dict(type='bool', default=False),
ramdisk = dict(),
wait = dict(type='bool', default=False),
Expand Down

0 comments on commit 503327d

Please sign in to comment.