forked from claranet/terraform-azurerm-aks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.ci
37 lines (36 loc) · 935 Bytes
/
terraform.tfvars.ci
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
location = "fr-central"
location_short = "frc"
client_name = "test"
environment = "test"
stack = "ci"
resource_group_name = "test-rg"
extra_tags = {
foo = "bar"
}
service_cidr = "192.168.1.0/24"
nodes_pools = [
{
name = "nodepool1"
vm_size = "Standard_B4ms"
os_type = "Linux"
os_disk_size_gb = 100
vnet_subnet_id = "subnet_id"
max_pods = 110
enable_auto_scaling = true
count = 1
min_count = 1
max_count = 10
},
{
name = "nodepool2"
vm_size = "Standard_B4ms"
os_type = "Linux"
os_disk_size_gb = 100
vnet_subnet_id = "subnet_id"
max_pods = 110
enable_auto_scaling = true
count = 1
max_count = 10
min_count = 1
}
]