mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
[aws] One line change to be able to delete AWS tag
I have know idea if that was intentional but with that action set the method does not delete tags. Setting it to the DeleteTags action does.
This commit is contained in:
parent
9591b3f7a2
commit
7166d35d6b
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ module Fog
|
|||
params.merge!(AWS.indexed_param('Tag.%d.Key', tags.keys))
|
||||
params.merge!(AWS.indexed_param('Tag.%d.Value', tags.values))
|
||||
request({
|
||||
'Action' => 'CreateTags',
|
||||
'Action' => 'DeleteTags',
|
||||
:parser => Fog::Parsers::AWS::Compute::Basic.new
|
||||
}.merge!(params))
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue