-
Notifications
You must be signed in to change notification settings - Fork 5
/
variables.tf
60 lines (49 loc) · 1.35 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
59
60
variable "name" {
type = string
description = "Base name for the cluster and other resources"
}
variable "stage" {
type = string
description = "Stage of the deployment (Production/Development etc)"
}
variable "tags" {
type = map(string)
description = "Default tags to be attached for every resource in the module"
default = {}
}
variable "region" {
type = string
description = "Region in which resources should be created"
}
variable "instance_type" {
type = string
description = "Type of ECS container intance type"
}
variable "ebs_volume_type" {
type = string
description = "Type of EBS volume to be used for container storage"
}
variable "ebs_volume_size" {
type = number
description = "Size of ebs volume"
}
variable "mongo_container_cpu" {
type = number
description = "CPU capacity required for mongo container ( 1024 == 1 cpu)"
}
variable "mongo_version" {
type = string
description = "Docker image version of mongo"
}
variable "mongo_container_memory" {
type = number
description = "Memory required for mongo container"
}
variable "security_group_id" {
type = string
description = "Security group id for container EC2 instance"
}
variable "subnet_id" {
type = string
description = "Subnet id for container EC2 instance"
}