This repository has been archived by the owner on Sep 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
86 lines (61 loc) · 1.49 KB
/
vars.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
variable "project_id" {
type = string
description = "Project ID"
}
variable "region" {
type = string // value type
description = "Values: fr-par nl-ams pl-waw" // documentation
}
variable "zone" {
type = string // value type
description = "Values: fr-par-1 fr-par-2 fr-par-3 nl-ams-1 pl-waw-1" // documentation
}
variable "scw_access_key" {
type = string
description = "SCW access key"
}
variable "scw_secret_key" {
type = string
description = "SCW secret key"
}
# k8s
variable "k8s_version" {
type = string
description = "K8s version"
}
variable "node_type" {
type = string
description = "Type of the node"
}
variable "cluster_size" {
type = number
description = "Size of the cluster"
}
variable "cluster_min_size" {
type = number
description = "Minimum size of the cluster"
}
variable "cluster_max_size" {
type = number
description = "Maximum size of the cluster"
}
variable "cluster_issuer_email" {
type = string
description = "Email of the cluster issuer"
}
variable "aws_access_key" {
type = string
description = "AWS access key"
}
variable "aws_secret_key" {
type = string
description = "AWS secret key"
}
variable "aws_region" {
type = string
description = "AWS region"
}
variable "nextcloud_password" {
type = string
description = "Nextcloud password"
}