-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
86 lines (70 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
82
83
84
85
86
variable "resource_group_name" {
description = "Azure Resource Group Name"
}
variable "resource_group_location" {
description = "Azure Resource Group location"
}
variable "worker_pool_name" {
description = "Name of agentpool: lowercase, max 12 characters, permitted a-z,0-9"
default = "default"
}
variable "worker_vm_count" {
description = "Number of worker VMs to initially create"
default = "1"
}
variable "worker_os_type" {
description = "Operating System for Worker Nodes"
default = "Linux"
}
variable "worker_os_disk_size" {
description = "Azure VM OS Disk Size"
default = "30"
}
variable "worker_vm_size" {
description = "Azure VM type"
default = "Standard_D8s_v3"
}
variable "kubernetes_version" {
description = "Kubernetes Version to deploy"
default = "1.11.9"
}
variable "network_profile_plugin" {
description = "Network Plugin to use. azure or kubenet"
default = "azure"
}
variable "network_profile_policy" {
description = "Network Policy to use with AzureCNI"
default = "calico"
}
variable "azure_client_id" {
description = "Azure Client ID"
default = ""
}
variable "azure_client_secret" {
description = "Azure Client Secret"
default = ""
}
variable "ad_client_app_id" {
description = "AAD Client App ID"
default = ""
}
variable "ad_server_app_id" {
description = "AAD Server App ID"
default = ""
}
variable "ad_server_app_secret" {
description = "AAD Server App Secret"
default = ""
}
variable "tag_environment" {
description = "Tag: Cluster Environment"
default = ""
}
variable "tag_region" {
description = "Tag: Cluster Environment"
default = ""
}
variable "tag_product" {
description = "Tag: Cluster Product Lensferry/Nexus"
default = ""
}