-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
58 lines (47 loc) · 1.55 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
variable "appmesh-resource-arn" {
type = string
description = "arn of appmesh virual node"
}
variable "awslogs-region" {
type = string
description = "region of CloudWatch logs"
}
variable "awslogs-group" {
type = string
description = "group of CloudWatch logs"
}
variable "app-ports" {
type = string
description = "Coma separated app port numbers"
}
variable "egress-ignored-ports" {
type = string
description = "Coma separated egress ignored ports"
}
variable "container_name" {
type = string
description = "Cloud map container name"
}
variable "aws_service_discovery_service_arn" {
type = string
description = "arn of service discovery service"
}
variable "container_memory" {
type = number
description = "The amount of memory (in MiB) to allow the container to use. This is a hard limit, if the container attempts to exceed the container_memory, the container is killed. This field is optional for Fargate launch type and the total amount of container_memory of all containers in a task will need to be lower than the task memory value"
default = null
}
variable "ulimits" {
type = list(object({
name = string
hardLimit = number
softLimit = number
}))
description = "Container ulimit settings. This is a list of maps, where each map should contain \"name\", \"hardLimit\" and \"softLimit\""
default = null
}
variable "health_check_start_period" {
type = number
description = "when to start performing healthchecks"
default = 10
}