Model/infrastructure/terraform/lambda/_template/variables.tf
2026-02-03 14:31:16 +00:00

14 lines
No EOL
314 B
HCL

variable "lambda_name" {
type = string
description = "Logical name of the lambda (e.g. address2uprn)"
}
variable "image_uri" {
type = string
description = "Full ECR image URI including digest"
}
variable "stage" {
description = "Deployment stage (e.g. dev, prod)"
type = string
}