1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39variable "project_name" {
type = string
}
variable "environment" {
type = string
}
variable "alarm_email" {
description = "Email to subscribe to the alarms SNS topic. Leave null to skip the subscription (you can add one later)."
type = string
default = null
}
variable "lambda_function_names" {
description = "Lambda function names to alarm on Errors for."
type = list(string)
}
variable "rds_instance_id" {
type = string
}
variable "alb_arn_suffix" {
type = string
}
variable "target_group_arn_suffix" {
type = string
}
variable "ecs_cluster_name" {
type = string
}
variable "ecs_service_name" {
type = string
}