-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
88 lines (70 loc) · 2.16 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 location {
type = string
description = "The Azure Region you would like to deploy to"
default = "eastus2"
}
variable resource_group {
type = string
description = "The name of the resource group to be created and deployed to"
default = "aks-private-cluster-in-vwan"
}
variable aks_cni_vnet_address_space {
type = list(string)
description = "Address space for the VNET supporting this AKS deployment (Azure CNI)"
default = ["10.6.0.0/16"]
}
variable aks_cni_subnet_address_space {
type = list(string)
description = "Address space for the Subnet supporting this AKS deployment (Azure CNI)"
default = ["10.6.0.0/23"]
}
variable central_dns_vnet {
type = string
description = "Existing VNET to link the private cluster dns zone to"
default = "vnet-private-dns-resolver"
}
variable central_dns_vnet_rg {
type = string
description = "RG of Existing VNET to link the private cluster dns zone to"
default = "private-dns-resolver"
}
variable central_dns_privatezones_rg {
type = string
description = "RG of Existing Private DNS Zones"
default = "private-dns-resolver"
}
variable vhub_name {
type = string
description = "Existing VHUB name"
default = "vwan-hub"
}
variable vhub_rg {
type = string
description = "Existing VHUB RG name"
default = "vwan-hubrg"
}
variable custom_dns_servers {
type = list(string)
description = "Existing Central DNS IP"
default = ["10.3.0.4"]
}
variable vhub_FW_IP {
type = string
description = "Existing Azure Firewall or NVA FW IP"
default = "10.100.2.4"
}
variable centralized-dns-subscription {
type = string
description = "Subscription ID for the Centralized DNS Subscription"
default = "00000000-0000-0000-0000-000000000000<change-me>"
}
variable vwan-subscription {
type = string
description = "Subscription ID where the VWAN is deployed"
default = "00000000-0000-0000-0000-000000000000<change-me>"
}
variable custom-dns-subdomain-zone-name {
type = string
description = "Name of Private DNS Zone to use"
default = "privatelink.eastus2.azmk8s.io"
}