-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
81 lines (66 loc) · 1.76 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
77
78
79
80
81
variable "enable_private_dns" {
type = bool
description = "whether to enable private dns zone"
default = true
}
variable "enable_public_dns" {
type = bool
description = "whether to enable public dns zone"
default = true
}
variable "network_name" {
type = string
description = "The name of the Azure Virtual Network to provision the AKS cluster in."
}
variable "resource_group_name" {
type = string
description = "The name of the Azure Resource Group the Virtual Network is in."
}
variable "subnet_name" {
type = string
description = "The name of the Vnet Subnet to provision the AKS cluster in."
}
variable "nuon_id" {
type = string
description = "The nuon id for this install. Used for naming purposes."
}
variable "location" {
type = string
description = "The location to launch the cluster in"
}
// NOTE: if you would like to create an internal load balancer, with TLS, you will have to use the public domain.
variable "internal_root_domain" {
type = string
description = "The internal root domain."
}
variable "public_root_domain" {
type = string
description = "The public root domain."
}
variable "cluster_version" {
type = string
description = "The Kubernetes version to use for the AKS cluster."
default = "1.28"
}
variable "vm_size" {
type = string
default = "Standard_D2_v2"
description = "The image size."
}
variable "node_count" {
type = number
default = 2
description = "The minimum number of nodes in the managed node pool."
}
variable "max_pods" {
type = number
default = 30
}
variable "agents_max_count" {
type = number
default = 1
}
variable "agents_min_count" {
type = number
default = 1
}