Skip to content

Commit

Permalink
fix kms key lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
terrywbrady committed Jan 10, 2025
1 parent 6726e30 commit af8f69f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-colladmin/actions/ssm_describe_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ def initialize(config, action, path, myparams)
data.parameters.each do |p|
# do not dump or display value attributes
n = p.name
next unless parameters.key?(n)
next unless @parameters.key?(n)

@parameters[n].keyid = p.key_id
end
nexttoken = data.next_token
end
rescue StandardError
# skip if permissions are not available
rescue StandardError => e
puts e
end
load_registry
end
Expand Down

0 comments on commit af8f69f

Please sign in to comment.