Skip to content

Commit 48c5a37

Browse files
authored
fix: allow terminate Lambda to access kms key (#1253)
## Description Just noticed that the termination Lambdas do no longer start. Error message is ``` Calling the invoke API action failed with this message: Lambda was unable to decrypt the environment variables because KMS access was denied. Please check the function's KMS key settings. KMS Exception: AccessDeniedExceptionKMS Message: User: <arn here> is not authorized to perform: kms:Decrypt on resource: <arn here> because no identity-based policy allows the kms:Decrypt action (Service: Kms, Status Code: 400, Request ID: <request id here>) ``` This PR adds the `kms:Decrypt` action to the Lambda role allowing the Lambda function to decode the environment variables.
1 parent 6715229 commit 48c5a37

File tree

1 file changed

+8
-0
lines changed
  • modules/terminate-agent-hook

1 file changed

+8
-0
lines changed

modules/terminate-agent-hook/iam.tf

+8
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ resource "aws_iam_role" "lambda" {
3636
# This IAM policy is used by the Lambda function.
3737
data "aws_iam_policy_document" "lambda" {
3838
# checkov:skip=CKV_AWS_111:Write access is limited to the resources needed
39+
statement {
40+
sid = "allow kms access"
41+
actions = [
42+
"kms:Decrypt", # to decrypt the Lambda environment variables
43+
]
44+
resources = [var.kms_key_id]
45+
effect = "Allow"
46+
}
3947

4048
# Permit the function to get a list of instances
4149
statement {

0 commit comments

Comments
 (0)