-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvariables.tf
127 lines (112 loc) · 2.83 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
124
125
126
127
variable "environment_project" {
type = map(string)
description = "The Association of Projects and Environment names"
default = {
"devops" = "guru-playground",
}
}
variable "environment_region" {
type = map(string)
description = "The Association of Regions and Environments"
default = {
"devops" = "us-central1"
}
}
variable "environment_zone" {
type = map(string)
description = "The Association of Zones and Environments"
default = {
"devops" = "us-central1-a"
}
}
variable "environment_k8s_version" {
type = map(string)
description = "The Association of k8s version and Environments"
default = {
"devops" = "1.27.4-gke.900"
}
}
variable "environment_letsencrypt_email" {
type = map(string)
description = "The Association of Letsencrypt Email and Environments"
default = {
"devops" = "[email protected]"
}
}
variable "environment_cluster_name" {
type = map(string)
description = "The Association of Cluster Name and Environments"
default = {
"devops" = "devops-k8s-cluster"
}
}
variable "environment_vpc_name" {
type = map(string)
description = "VPC Name Like devops-k8s-vpc"
default = {
"devops" = "devops-k8s-vpc"
}
}
variable "environment_tier" {
type = map(string)
description = "Default Pool Instance Type Like e2-standard-2"
default = {
"devops" = "e2-standard-2"
}
}
variable "environment_spot_tier" {
type = map(string)
description = "Stop Pool Instance Type Like e2-standard-2"
default = {
"devops" = "e2-standard-2"
}
}
variable "environment_subnet_name" {
type = map(string)
description = "The cluster subnet name like devops-k8s-subnet"
default = {
"devops" = "devops-k8s-subnet"
}
}
variable "environment_subnet_cidr" {
type = map(string)
description = "The Cluster subnet CIDR Like 10.0.0.0/18"
default = {
"devops" = "10.0.0.0/18"
}
}
variable "environment_pod_cidr" {
type = map(string)
description = "The Cluster POD Cidr Like 10.48.0.0/14"
default = {
"devops" = "10.48.0.0/14"
}
}
variable "environment_pod_cidr_name" {
type = map(string)
description = "The Cluster POD CIDR Name Like devops-k8s-pod-cidr"
default = {
"devops" = "devops-k8s-pod-cidr"
}
}
variable "environment_svc_cidr" {
type = map(string)
description = "The Cluster Service CIDR Like 10.52.0.0/20"
default = {
"devops" = "10.52.0.0/20"
}
}
variable "environment_svc_cidr_name" {
type = map(string)
description = "The Cluster Service CIDR Name Like devops-k8s-svc-cidr"
default = {
"devops" = "devops-k8s-svc-cidr"
}
}
variable "environment_master_ipv4_cidr_block" {
type = map(string)
description = "The master IPV4 CIDR Block like 172.16.0.0/28"
default = {
"devops" = "172.16.0.0/28"
}
}