-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
68 lines (56 loc) · 1.68 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
variable "organisation_slug" {
description = "A unique identifier for the organisation. This is used to distinguish resources across different organisations. Required."
type = string
nullable = false
}
variable "environment_slug" {
description = "A unique identifier for the environment within the organisation. Required."
type = string
nullable = false
}
variable "cluster_name" {
type = string
description = "Name of the cluster"
}
variable "region" {
type = string
description = "Cloud Region"
}
variable "update_channel_name" {
type = string
description = "Name of the Update Channel used for discovering the Kubernetes version"
default = "v1.28"
}
variable "kubernetes_version" {
description = "Optional Kubernetes version used for deploying the cluster"
type = string
default = null
}
variable "cloud_provider" {
type = string
description = "Slug of the cloud provider used for provisioning the cluster"
}
variable "cloud_account_name" {
type = string
description = "Cloud account name"
}
variable "enable_multi_availability_zones" {
type = bool
default = true
description = "Enable multi availability zones for the cluster"
}
variable "enable_high_available_control_plane" {
type = bool
default = false
description = "Enable HA control plane"
}
variable "enable_private_cluster" {
type = bool
default = false
description = "Enable Private networking Cluster Mode"
}
variable "enable_network_encryption" {
type = bool
default = true
description = "Enable Network Encryption at the node level (if supported by the CNI)"
}