mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
ec2_tag: Fix removing tags without specifying a value (#47228)
This commit is contained in:
parent
3f629c426c
commit
0fc639e755
2 changed files with 52 additions and 5 deletions
|
@ -32,7 +32,8 @@ options:
|
|||
choices: ['present', 'absent', 'list']
|
||||
tags:
|
||||
description:
|
||||
- a hash/dictionary of tags to add to the resource; '{"key":"value"}' and '{"key":"value","key":"value"}'
|
||||
- A dictionary of tags to add or remove from the resource.
|
||||
- If the value provided for a tag is null and C(state) is I(absent), the tag will be removed regardless of its current value.
|
||||
required: true
|
||||
purge_tags:
|
||||
description:
|
||||
|
@ -77,6 +78,22 @@ EXAMPLES = '''
|
|||
state: list
|
||||
register: ec2_tags
|
||||
|
||||
- name: Remove the Env tag
|
||||
ec2_tag:
|
||||
region: eu-west-1
|
||||
resource: i-xxxxxxxxxxxxxxxxx
|
||||
tags:
|
||||
Env:
|
||||
state: absent
|
||||
|
||||
- name: Remove the Env tag if it's currently 'development'
|
||||
ec2_tag:
|
||||
region: eu-west-1
|
||||
resource: i-xxxxxxxxxxxxxxxxx
|
||||
tags:
|
||||
Env: development
|
||||
state: absent
|
||||
|
||||
- name: Remove all tags except for Name from an instance
|
||||
ec2_tag:
|
||||
region: eu-west-1
|
||||
|
@ -149,8 +166,8 @@ def main():
|
|||
remove_tags = {}
|
||||
if state == 'absent':
|
||||
for key in tags:
|
||||
if key in current_tags and current_tags[key] == tags[key]:
|
||||
remove_tags[key] = tags[key]
|
||||
if key in current_tags and (tags[key] is None or current_tags[key] == tags[key]):
|
||||
remove_tags[key] = current_tags[key]
|
||||
|
||||
for key in remove:
|
||||
remove_tags[key] = current_tags[key]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue