-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
66 lines (54 loc) · 1.16 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
variable "prefix" {
type = string
}
variable "location" {
type = string
}
variable "enable_auto_scaling" {
type = bool
default = false
}
variable "default_node_count" {
description = "Specifies the count of the nodes in the node pool"
type = number
default = 1
}
variable "default_node_size" {
description = "Specifies the size for the node in the node pool"
type = string
default = "Standard_DS2_v2"
}
variable "kubernetes_version" {
description = "Specifies the AKS Kubernetes version"
default = "1.23"
type = string
}
variable "target_workspaces" {
type = set(string)
}
variable "default_workspace" {
type = string
default = "dev"
}
variable "enable_private_cluster" {
type = bool
default = false
}
variable "cloudflare_cert_manager_token" {
type = string
sensitive = true
}
variable "github_owner" {
type = string
description = "github owner"
default = "abc"
}
variable "flux_repository_name" {
type = string
default = "abc-flux"
description = "github repository name"
}
variable "flux_notification_webhook" {
type = string
sensitive = true
}