forked from patuzov/terraform-private-aks
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
54 lines (44 loc) · 1.29 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
variable "location" {
description = "The resource group location"
default = "East US"
}
variable "vnet_resource_group_name" {
description = "The resource group name to be created"
default = "networks"
}
variable "hub_vnet_name" {
description = "Hub VNET name"
default = "hub1-firewalvnet"
}
variable "kube_vnet_name" {
description = "AKS VNET name"
default = "spoke1-kubevnet"
}
variable "kube_version_prefix" {
description = "AKS Kubernetes version prefix. Formatted '[Major].[Minor]' like '1.18'. Patch version part (as in '[Major].[Minor].[Patch]') will be set to latest automatically."
default = "1.24.6"
}
variable "kube_resource_group_name" {
description = "The resource group name to be created"
default = "nopublicipaks"
}
variable "nodepool_nodes_count" {
description = "Default nodepool nodes count"
default = 1
}
variable "nodepool_vm_size" {
description = "Default nodepool VM size"
default = "Standard_D2_v2"
}
variable "network_docker_bridge_cidr" {
description = "CNI Docker bridge cidr"
default = "172.17.0.1/16"
}
variable "network_dns_service_ip" {
description = "CNI DNS service IP"
default = "10.2.0.10"
}
variable "network_service_cidr" {
description = "CNI service cidr"
default = "10.2.0.0/24"
}