-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
46 lines (39 loc) · 1.1 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
variable "prefix" {
description = "The prefix for all resources"
default = "example"
type = string
}
variable "region" {
description = "The region of the VPC"
type = string
default = "us-iad"
}
variable "v_subnet" {
description = "The IPv4 range of this subnet in CIDR format."
type = string
default = "10.0.0.0/24"
}
variable "k8s_version" {
description = "The desired Kubernetes version for this Kubernetes cluster in the format of major.minor (e.g. 1.21), and the latest supported patch version will be deployed."
type = string
default = "1.31"
}
variable "token" {
description = "This is the Linode API key"
type = string
}
variable "cluster_region" {
description = "This Kubernetes cluster's location"
type = string
default = "us-central"
}
variable "pool_type" {
description = "A Linode Type for all of the nodes in the Node Pool."
type = string
default = "g6-standard-2"
}
variable "pool_count" {
description = "The number of nodes in the Node Pool."
type = number
default = 3
}