This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
variables.tf
127 lines (102 loc) · 2.55 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
variable "agent_vm_count" {
type = string
default = "3"
}
variable "agent_vm_size" {
type = string
default = "Standard_D2s_v3"
}
variable "acr_enabled" {
type = string
default = "true"
}
variable "gc_enabled" {
type = string
default = "true"
}
variable "cluster_name" {
type = string
}
variable "dns_prefix" {
type = string
}
variable "flux_recreate" {
description = "Make any change to this value to trigger the recreation of the flux execution script."
type = string
default = "false"
}
variable "gitops_ssh_url" {
type = string
}
variable "gitops_ssh_key_path" {
type = string
}
variable "gitops_path" {
type = string
default = ""
}
variable "gitops_url_branch" {
type = string
default = "master"
}
variable "kubernetes_version" {
type = string
default = "1.15.11"
}
variable "resource_group_name" {
type = string
}
variable "ssh_public_key" {
type = string
}
variable "service_principal_id" {
type = string
}
variable "service_principal_secret" {
type = string
}
variable "gitops_poll_interval" {
type = string
default = "5m"
}
variable "gitops_label" {
type = string
default = "flux-sync"
}
variable "vnet_name" {
type = string
}
variable "service_cidr" {
default = "10.0.0.0/16"
description = "Used to assign internal services in the AKS cluster an IP address. This IP address range should be an address space that isn't in use elsewhere in your network environment. This includes any on-premises network ranges if you connect, or plan to connect, your Azure virtual networks using Express Route or a Site-to-Site VPN connections."
type = string
}
variable "dns_ip" {
default = "10.0.0.10"
description = "should be the .10 address of your service IP address range"
type = string
}
variable "docker_cidr" {
default = "172.17.0.1/16"
description = "IP address (in CIDR notation) used as the Docker bridge IP address on nodes. Default of 172.17.0.1/16."
}
variable "address_space" {
description = "The address space that is used by the virtual network."
default = "10.10.0.0/16"
}
variable "subnet_prefix" {
description = "The address prefix to use for the subnet."
default = "10.10.1.0/24"
}
variable "network_plugin" {
default = "azure"
description = "Network plugin used by AKS. Either azure or kubenet."
}
variable "network_policy" {
default = "azure"
description = "Network policy to be used with Azure CNI. Either azure or calico."
}
variable "oms_agent_enabled" {
type = string
default = "false"
}