-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
35 lines (30 loc) · 1013 Bytes
/
variables.tf
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
variable "ecs_cluster_name" {
type = string
description = "Specifies the ECS Cluster Name with which the resources would be associated"
}
variable "ecs_cluster_arn" {
type = string
description = "Specifies the ECS Cluster ARN with which the resources would be associated"
}
variable "region" {
type = string
description = "AWS Region for ECS cluster"
}
variable "autoscaling_group_arn" {
type = string
description = "The name of the Auto Scaling group to which you want to assign the lifecycle hook to"
}
variable "autoscaling_group_name" {
type = string
description = "The name of the Auto Scaling group to which you want to assign the lifecycle hook to"
}
variable "tags" {
type = map(string)
description = "Additional tags (_e.g._ { BusinessUnit : ABC })"
default = {}
}
variable "log_retention_days" {
description = "The number of days to retain log events. Set to 0 for never expire."
type = number
default = 14
}