-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
124 lines (99 loc) · 2.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
##############################################################################
# Account variables
##############################################################################
###################################
## GERAL VARIABLES
###################################
variable iaas_classic_username {
description = "IBM Cloud classic username"
default = "apikey"
type = string
}
variable iaas_classic_api_key {
description = "IBM Cloud classic api key"
type = string
}
variable region {
default = "us-south"
description = "DC Zone"
}
variable zone {
default = "us-south-1"
description = "DC Zone"
}
###################################
## VPC VARIABLES
###################################
variable netbasename {
default = "instana-network"
description = "Base name for network components."
}
variable vpc-prefix {
default = ["10.200.0.0/20","10.200.16.0/20","10.200.32.0/20"]
description = "VPC IP ADD"
type=list
}
variable vpc-zones {
default = ["us-south-1","us-south-2","us-south-3"]
description = "Zones to be configures"
type=list
}
variable vpc-zones-ips {
default = ["10.200.0.0/24","10.200.16.0/24","10.200.32.0/24"]
description = "Zones to be configures"
type=list
}
variable ipv4-zone01 {
default = "10.200.1.0/24"
description = "Base name for network components."
}
###################################
## CASSANDRA VARIABLES
###################################
variable cassandra_basename {
default = "srv-cassandra"
description = "Base name for network components."
}
variable cassandra_qtde {
default = 1
description = "Number of cassandra instances"
}
variable cassandra_profile {
default = "bx2-2x8"
description = "Number of cassandra instances"
}
###################################
## CLICKHOUSE VARIABLES
###################################
variable clickhouse_basename {
default = "srv-clickhouse"
description = "Base name for network components."
}
variable clickhouse_qtde {
default = 1
description = "Number of cassandra instances"
}
variable clickhouse_profile {
default = "bx2-2x8"
description = "Number of cassandra instances"
}
variable monitor_profile {
default = "bx2-2x8"
description = "Number of cassandra instances"
}
###################################
## MONITORING VARIABLES
###################################
variable monitoring_basename {
default = "srv-monitoring"
description = "Base name for network components."
}
variable monitoring_qtde {
default = 1
description = "Number of cassandra instances"
}
##################################
variable TF_VERSION {
default = "˜> 1.1"
description = "The version of the Terraform engine that's used in the Schematics workspace."
}