-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
70 lines (56 loc) · 1.49 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
variable "projectname" {
description = "set the name of the project"
type = "string"
}
variable "location" {
description = "set Azure Location e.g. eastus or westeurope"
type = "string"
}
variable "tf_aks_volume_sa_replication_type" {
description = "set replication type for the Storage Account"
type = "string"
default = "LRS"
}
variable "tf_aks_volume_sa_tier" {
description = "Set the Storage Tier e.g. to Standard or Premium"
type = "string"
default = "Standard"
}
variable "k8s_cluster_version" {
type = "string"
description = "select the version of Kubernetes you want to use. Depends on Azure availability"
}
variable "k8s_node_count" {
default = "1"
description = "define the amount of nodes in your cluster"
}
variable "k8s_node_size" {
type = "string"
description = "select the Azure Node Size, warning case sensitive..."
default = "Standard_DS2_v2"
}
variable "service_principal" {
type = "string"
description = "Service Principal which will be used by the k8s Cluster"
}
variable "service_principal_secret" {
type = "string"
description = "Service Principal Secret which will be used by the k8s Cluster"
}
variable "dns_prefix" {
type = "string"
description = "dns_prefix will be used as part of an Azure assigned FQDN"
}
variable "admin_username" {
type = "string"
description = "set the admin username"
}
variable "admin_rsa_pubkey" {
type = "string"
}
variable "resource_tags" {
type = "map"
default = {
Name = "aks_state"
}
}