-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
66 lines (64 loc) · 1.59 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 "az_prefix" {
type = string
description = "Prefix for all resources"
}
variable "prefix" {
type = string
description = "Prefix for container registry"
}
variable "prefix_k8s" {
type = string
description = "Prefix for K8"
}
variable "dns_names" {
type = list(any)
description = "DNS names for domain"
}
variable "azurelocation" {
type = string
description = "Azure region"
}
variable "managed" {
type = string
description = "True if managed by terraform"
}
variable "level" {
type = string
description = "Environment level"
}
variable "address_space" {
type = list(any)
description = "Address space for VNET"
}
variable "subnet_workers" {
type = list(any)
description = "Subnet for workers"
}
variable "subnet_vip" {
type = list(any)
description = "Subnet for VIP"
}
variable "subnet_appgw" {
type = list(any)
description = "Subnet for Application Gateway"
}
variable "subnet_lb" {
type = list(any)
description = "Subnet for Load Balancers"
}
variable "auth_ip" {
type = list(any)
description = "Allowed IPs to manage cluster"
}
variable "certname" {
type = string
description = "Name of Certificate in Key Vault"
}
variable "public_ssh_key" {
description = "An ssh key set in the main variables of the terraform-azurerm-aks module"
default = ""
}
variable "private_ssh_key" {
description = "An ssh key set in the main variables of the terraform-azurerm-aks module"
default = ""
}