Skip to content

Commit

Permalink
ansible-collections#1573 remove unalowed variable _ from ssm_parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehas committed Oct 27, 2022
1 parent b764b63 commit 705d3fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/ssm_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ def update_parameter_tags(client, module, parameter_name, supplied_tags):
if supplied_tags is None:
return False, response

current_tags, _ = get_parameter_tags(client, module, parameter_name)
current_tags = get_parameter_tags(client, module, parameter_name)[0]
tags_to_add, tags_to_remove = compare_aws_tags(current_tags, supplied_tags,
module.params.get('purge_tags'))

Expand Down

0 comments on commit 705d3fa

Please sign in to comment.