Skip to content

Commit

Permalink
Updated lambda SSM naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-gangl committed May 22, 2024
1 parent 54e4eca commit 33f4994
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 33f4994

Please sign in to comment.