We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f909e7 + 5cb7ca9 commit d1d7a13Copy full SHA for d1d7a13
2 files changed
kmsauth/__init__.py
@@ -122,6 +122,10 @@ def _format_auth_key(self, keys):
122
)
123
124
def _get_key_arn(self, key):
125
+ if key.startswith('arn:aws:kms:'):
126
+ self.KEY_METADATA[key] = {
127
+ 'KeyMetadata': {'Arn': key}
128
+ }
129
if key not in self.KEY_METADATA:
130
self.KEY_METADATA[key] = self.kms_client.describe_key(
131
KeyId='{0}'.format(key)
setup.py
@@ -13,7 +13,7 @@
13
14
from setuptools import setup, find_packages
15
16
-VERSION = "0.1.6"
+VERSION = "0.1.7"
17
18
requirements = [
19
# Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK)
0 commit comments