-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
95 lines (77 loc) · 1.47 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
variable access_key {
description = "Ncloud Access Key"
type = string
}
variable secret_key {
description = "Ncloud Secret Key"
type = string
sensitive = true
}
variable site {
description = "Ncloud site"
type = string
default = "pub"
}
variable region {
description = "Ncloud region"
type = string
default = "KR"
}
variable zone {
description = "Ncloud zone"
type = string
default = "KR-2"
}
variable login_key_name {
description = "Ncloud login key"
type = string
default = "tf-key"
}
#region VPC
variable vpc_cidr {
default = "10.0.0.0/16"
}
variable vpc_name {
default = "tf-vpc"
}
#endregion
#region NAT Gateway
variable natgw_subnet_cidr {
default = "10.0.100.192/26"
}
variable natgw_subnet_name {
default = "tf-natgw-kr2-100-192"
}
variable natgw_name {
default = "natgw"
}
#endregion
#region MARK: Kubernetes Service
variable nks_subnet_cidr {
default = "10.0.1.0/24"
}
variable nks_subnet_name {
default = "tf-private-kr2-1-0"
}
variable nks_lb_subnet_cidr {
default = "10.0.100.0/25"
}
variable nks_lb_subnet_name {
default = "tf-private-lb-kr2-100-0"
}
variable nks_pub_lb_subnet_cidr {
default = "10.0.100.128/26"
}
variable nks_pub_lb_subnet_name {
default = "tf-public-lb-kr2-100-128"
}
variable nks_version {
default = "1.29.9"
}
variable nks_service_name {
default = "tf-cluster"
}
variable nks_server_image {
default = "ubuntu-22.04"
}
#endregion