Skip to content

Commit

Permalink
Merge pull request #1 from unity-sds/issues/401
Browse files Browse the repository at this point in the history
Updated lambda SSM naming convention
  • Loading branch information
mike-gangl authored May 22, 2024
2 parents 54e4eca + 33f4994 commit 7ef4bd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform-unity/lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ resource "aws_iam_role_policy_attachment" "lambda_stop_task_policy_attachment" {
}

resource "aws_ssm_parameter" "lambda_function_name" {
name = "/unity/cs/management/proxy/${var.installprefix}-httpd-lambda-name"
name = "/unity/${var.project}/${var.venue}/cs/management/proxy/lambda-name"
type = "String"
value = aws_lambda_function.httpdlambda.function_name
overwrite = true
Expand All @@ -168,4 +168,4 @@ output "lambda_function_arn" {
output "lambda_function_name" {
description = "The name of the Lambda function"
value = aws_lambda_function.httpdlambda.function_name
}
}

0 comments on commit 7ef4bd8

Please sign in to comment.