-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
76 lines (65 loc) · 1.53 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
variable "civo_apitoken" {
description = "This is the Api token Variable "
type = string
default = "null"
}
variable "cluster_name" {
description = "The name of the Kubernetes cluster"
type = string
default = "spx7-default"
}
variable "region" {
description = "The region to create the cluster in"
type = string
default = "fra1"
}
variable "num_of_nodes" {
description = "The number of nodes in the cluster"
type = number
default = 1
}
variable "node_size" {
description = "The size of the nodes in the cluster"
type = string
default = "g4s.kube.xsmall"
}
variable "cni" {
description = "The CNI for the K8s Cluster"
type = string
default = "flannel"
}
variable "k8s_version" {
description = "kubernetes Version"
type = string
default = "1.28.7-stable"
}
variable "ssh_key_Name" {
description = "Name of the SSH Key"
type = string
default = "mac-14-ssh-key"
}
variable "VM_name" {
description = "name of the instance"
type = string
default = "spx7-Vm"
}
variable "VM_size" {
description = "The size of the VM"
type = string
default = "g3.medium"
}
variable "initial_user" {
description = "The default user"
type = string
default = "root"
}
variable "network-k8s" {
description = "This is K8s-network"
type = string
default = "sp7x-net"
}
variable "firewall-k8s" {
description = "The k8s Firewall"
type = string
default = "sp7x-firewall"
}