Skip to content

Commit

Permalink
add missing keyspec to describe_key parser
Browse files Browse the repository at this point in the history
  • Loading branch information
geemus committed Dec 16, 2024
1 parent 828d761 commit 1dfc9e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fog/aws/parsers/kms/describe_key.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def start_element(name, attrs = [])

def end_element(name)
case name
when 'Arn', 'AWSAccountId', 'Description', 'KeyId', 'KeyState', 'KeyUsage'
when 'Arn', 'AWSAccountId', 'Description', 'KeyId', 'KeySpec', 'KeyState', 'KeyUsage'
@key[name] = value
when 'CreationDate', 'DeletionDate'
@key[name] = Time.parse(value)
Expand Down

0 comments on commit 1dfc9e6

Please sign in to comment.