-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
77 lines (65 loc) · 1.3 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
70
71
72
73
74
75
76
77
variable "vpc_id" {
type = string
#default = "vpc-yourvpcidhere"
}
####
#NLB
####
variable "nlb_config" {
default = {
name = "logstash-nlb"
internal = "false"
environment = "test"
nlb_vpc_id = "vpc-yourvpcidhere"
}
}
variable "tg_config" {
default = {
name = "logstash-nlb-tg"
target_type = "instance"
health_check_protocol = "TCP"
tg_vpc_id = "vpc-yourvpcidhere"
}
}
variable "forwarding_config" {
default = {
#80 = "TCP"
#443 = "TCP"
5044 = "TCP" # and so on }
}
}
####
#ES
####
variable "es_domain_name" {
description = "elasticsearch domain name"
type = string
}
variable "es_version" {
description = "elasticsearch version"
type = string
}
variable "profile" {
description = "profile"
type = string
}
variable "region" {
description = "region"
type = string
}
variable "department" {
description = "department"
type = string
}
variable "environment" {
description = "environment"
type = string
}
variable "project" {
description = "project"
type = string
}
variable "ticket" {
description = "ticket"
type = string
}