forked from mrambell/DEPRECATED-LKE-and-juiceshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall-variables.tf
93 lines (84 loc) · 1.95 KB
/
all-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
#### START LKE VARIABLES
# Base LKE Variables
variable "linode_token" {
description = "your Linode API token"
default = ""
}
variable "lke_name" {
description = "The cluster name to use"
default = ""
}
variable "lke_k8s_version" {
description = "The desired LKE-k8s version (major.minor)"
default = ""
type = string
}
variable "lke_region" {
description = "The desired LKE region, std us-east - eu-west"
default = ""
type = string
}
variable "lke_tags" {
description = "A List of tags to identify the cluster"
default = ["terraform: true"]
type = list
}
variable "lke_controlplane_ha" {
# Please enable "api_version=v4beta" when using this
description = "Enable Cluster Control Plane High availability"
default = true
type = bool
}
# Node Pool Definitions
variable "lke_node_pool_count" {
description = "The number of nodes in the Node Pool."
default = ""
type = string
}
variable "lke_node_pool_type" {
description = "A Linode Type for all of the nodes in the Node Pool."
default = ""
type = string
}
## Node Pool Autoscaling
variable "lke_node_pool_autoscaling" {
description = "Enable (or disable) node pool autoscaling"
default = false
type = bool
}
variable "lke_node_pool_autoscaling_min" {
description = "The minimum number of nodes to autoscale to."
default = ""
type = string
}
variable "lke_node_pool_autoscaling_max" {
description = "The maximum number of nodes to autoscale to."
default = ""
type = string
}
###START APP VARIABLES
variable "namespace" {
description = "namespace for app"
default = ""
}
variable "thehost" {
description = "the host for external DNS and deployment. will be added to Akaami EDNS"
default = ""
}
### AKAMAI Platform Variables -
variable aka_client_secret {
type = string
default = ""
}
variable aka_host {
type = string
default = ""
}
variable aka_access_token {
type = string
default = ""
}
variable aka_client_token {
type = string
default = ""
}