Skip to content

Commit 6945cce

Browse files
BREAKING CHANGE: COREINF-7106 (publishes new application code for slowlog ruby lambda) (#18)
1 parent 7ba91b2 commit 6945cce

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ tags | object | Additional tags to create resources
4848

4949
To use *terraform-elasticache-slowlog-to-datadog* you need:
5050

51-
- An AWS account with an Elasticache instance running the `redis5.0` engine.
51+
- An AWS account with an Elasticache instance running the `redis5.0+` engine.
5252
- A Datadog account
5353

5454
# Development

files/slowlog_check.2.0.0.zip

-633 KB
Binary file not shown.

files/slowlog_check.3.0.0.zip

4.04 MB
Binary file not shown.

locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
slowlog_check_archive_basename = "slowlog_check.2.0.0.zip"
2+
slowlog_check_archive_basename = "slowlog_check.3.0.0.zip"
33
slowlog_check_archive_hash = filebase64sha256("${path.module}/files/${local.slowlog_check_archive_basename}")
44
slowlog_check_archive_path = "${path.module}/files/${local.slowlog_check_archive_basename}"
55

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ resource "aws_lambda_function" "slowlog_check" {
117117
source_code_hash = local.slowlog_check_archive_hash
118118
role = aws_iam_role.slowlog_check.arn
119119
handler = "lambda_function.lambda_handler"
120-
runtime = "ruby2.7"
120+
runtime = "ruby3.3"
121121
vpc_config {
122122
subnet_ids = var.subnet_ids
123123
security_group_ids = concat([aws_security_group.egress.id], var.elasticache_security_groups)

0 commit comments

Comments
 (0)