Skip to content

Commit dd479a6

Browse files
authored
Merge pull request #2 from scribd/jimp/fix_ssm_path_argument
fix: do not add leading and trailing slashes
2 parents 71f8f82 + 582355d commit dd479a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ resource "aws_lambda_function" "slowlog_check" {
134134
environment {
135135
variables = {
136136
REDIS_HOST = var.elasticache_endpoint
137-
SSM_PATH = "/${var.ssm_path}/"
137+
SSM_PATH = "${var.ssm_path}"
138138
NAMESPACE = var.namespace
139139
ENV = var.env
140140
METRICNAME = var.metric_name

0 commit comments

Comments
 (0)