mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #5312 from willthames/ec2_tag_enforce_state
Make state=present the default for ec2_tag
This commit is contained in:
commit
f8c197ba24
1 changed files with 4 additions and 3 deletions
|
@ -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…
Reference in a new issue