Make state=present the default for ec2_tag

Using `ec2_tag` module without the state argument
currently results in:
```
failed: [127.0.0.1] => {"failed": true, "parsed": false}
```
This fix makes `state=present` the default
pull/5312/head
willthames 11 years ago committed by Will Thames
parent d3f94fe606
commit 46a5f8c656

@ -31,8 +31,9 @@ options:
state:
description:
- Whether the tags should be present or absent on the resource.
required: true
default: null
required: false
default: present
choices: ['present', 'absent']
aliases: []
region:
description:
@ -116,7 +117,7 @@ def main():
resource = dict(required=True),
tags = dict(required=True),
region = dict(aliases=['aws_region', 'ec2_region'], choices=AWS_REGIONS),
state = dict(choices=['present', 'absent']),
state = dict(default='present', choices=['present', 'absent']),
ec2_url = dict(aliases=['EC2_URL']),
ec2_secret_key = dict(aliases=['aws_secret_key', 'secret_key'], no_log=True),
ec2_access_key = dict(aliases=['aws_access_key', 'access_key']),

Loading…
Cancel
Save