-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
77 lines (63 loc) · 1.75 KB
/
variables.tf
File metadata and controls
77 lines (63 loc) · 1.75 KB
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
variable "location" {
description = "The resource group location"
default = "eastus"
}
variable "resource_group_name" {
description = "The resource group name to be created"
default = "demo-virtual-wan"
}
variable "vwan_hub_address_space" {
description = "VWAN hub address space"
default = "10.0.0.0/22"
}
variable "vwan_hub_bgpconnection_asn" {
description = "A 16 bit Autonomous System Number that can't be in the range between 65515 and 65520, inclusively."
default = 65521
}
variable "vwan_hub_bgpconnection_1_peer_ip" {
description = "VWAN Virtual Hub peer ip"
default = "10.0.4.4"
}
variable "vwan_hub_bgpconnection_2_peer_ip" {
description = "VWAN Virtual Hub peer ip"
default = "10.0.4.5"
}
variable "spoke_1_vnet_address_space" {
description = "Spoke1 VNET address space"
default = ["10.0.4.0/22"]
}
variable "spoke_1_subnet_address_prefixes" {
description = "Spoke1 VNET subnet address prefixes"
default = ["10.0.4.0/22"]
}
variable "aks_nodepool_nodes_count" {
description = "Default nodepool nodes count"
default = 2
}
variable "aks_nodepool_vm_size" {
description = "Default nodepool VM size"
default = "Standard_D2_v2"
}
variable "aks_dns_service_ip" {
description = "CNI DNS service IP"
default = "10.0.8.10"
}
variable "aks_service_cidr" {
description = "CNI service cidr"
default = "10.0.8.0/22"
}
variable "calico_pod_cidr" {
description = "Calico POD CIDR"
type = string
default = "10.0.12.0/22"
}
variable "calico_version" {
description = "Calico Open Source release version"
type = string
default = "3.26.4"
}
variable "kubernetes_version" {
description = "AKS Kubernetes version"
type = string
default = "1.27"
}