-
Notifications
You must be signed in to change notification settings - Fork 0
/
var.tf
82 lines (64 loc) · 1.08 KB
/
var.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
variable "password" {
default = "Ccetest@2022"
}
variable "cce_cluster_name" {
default = "tbx-cce-test"
}
variable "cce_cluster_flavor" {
default = "cce.s2.small"
}
variable "cluster_type" {
default = "VirtualMachine"
}
variable "cce_cluster_version" {
default = "v1.19.10-r0"
}
variable "node_flavor" {
default = "s6.xlarge.4"
}
variable "root_volume_size" {
default = 40
}
variable "root_volume_type" {
default = "SAS"
}
variable "data_volume_size" {
default = 100
}
variable "data_volume_type" {
default = "SAS"
}
variable "ecs_name" {
default = "tbx-ecs"
}
variable "cce_node_os" {
default = "CentOS 7.6"
}
variable "nodepool_name" {
default = "nodepool1"
}
variable "scall_enable" {
default = "true"
}
variable "vpc_id" {
default = "will be apply"
}
variable "subnet_id" {
default = "will be apply"
}
locals {
eip = {
name = "cce-apiserver-test"
type = "5_bgp"
size = "20"
share_type = "PER"
charge_mode = "traffic"
}
}
locals {
node_count = {
initial = 2
min = 1
max = 2
}
}