Skip to content

Commit 54c8c6f

Browse files
committed
Bump version to 10
1 parent 284d874 commit 54c8c6f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
# Version 10 / 2019-11-19
4+
5+
- Support fetching API Key from secrets manager using `DD_API_KEY_SECRET_ARN`
6+
- Remove botocore to reduce package size
7+
- Update dependencies
8+
39
# Version 9 / 2019-11-04
410

511
- Tag layer-generated `aws.lambda.enhanced.invocations` and `aws.lambda.enhanced.errors` enhanced metrics with `runtime` and `memorysize`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ functions:
5858
5959
The Datadog API Key must be defined as one of the following environment variables via [AWS CLI](https://docs.aws.amazon.com/lambda/latest/dg/env_variables.html) or [Serverless Framework](https://serverless-stack.com/chapters/serverless-environment-variables.html):
6060
61-
- DD_API_KEY
61+
- DD_API_KEY - the Datadog API Key in plain-text, NOT recommended
6262
- DD_KMS_API_KEY - the KMS-encrypted API Key, requires the `kms:Decrypt` permission
63-
- DD_API_KEY_SECRET_ARN - the Secret ARN to fetch API Key from the Secrets Manager, requires the `secretsmanager:GetSecretValue` permission (also requires `kms:Decrypt` if using a custom CMK)
63+
- DD_API_KEY_SECRET_ARN - the Secret ARN to fetch API Key from the Secrets Manager, requires the `secretsmanager:GetSecretValue` permission (and `kms:Decrypt` if using a customer managed CMK)
6464

6565
You can also supply or override the API key at runtime:
6666

datadog_lambda/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The minor version corresponds to the Lambda layer version.
22
# E.g.,, version 0.5.0 gets packaged into layer version 5.
3-
__version__ = '0.9.0'
3+
__version__ = '0.10.0'
44

55

66
import os

0 commit comments

Comments
 (0)