-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariables.tf
69 lines (58 loc) · 1.53 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
61
62
63
64
65
66
67
68
69
variable "namespace" {
type = string
description = "Namespace (e.g. `eg` or `cp`)"
default = ""
}
variable "stage" {
type = string
description = "Stage (e.g. `prod`, `dev`, `staging`)"
default = ""
}
variable "name" {
type = string
description = "Name of the application"
}
variable "delimiter" {
type = string
default = "-"
description = "Delimiter to be used between `namespace`, `stage`, `name` and `attributes`"
}
variable "attributes" {
type = list(string)
default = []
description = "Additional attributes (e.g. `1`)"
}
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. map(`BusinessUnit`,`XYZ`)"
}
variable "custom_kms_key" {
type = string
description = "A custom, pre-defined KMS key ARN ID to use for encryption at rest"
default = ""
}
variable "security_groups" {
type = list(string)
default = []
description = "List of security group IDs to be allowed to connect to the cluster"
}
variable "subnet_ids" {
type = list(string)
description = "Subnet IDs"
}
variable "broker_node_instance_type" {
type = string
default = "kafka.m5.large"
description = "Kafka instance type for broker nodes"
}
variable "broker_node_instance_count" {
type = number
description = "Number of broker nodes in the cluster"
default = 3
}
variable "ebs_volume_size" {
type = number
description = "EBS volumes for data storage in GB"
default = 10
}