-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaks.tf
40 lines (35 loc) · 1.04 KB
/
aks.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
locals {
cluster_names = [ for i in range(var.resource_count) : "aks-${i}"]
}
resource "azurerm_kubernetes_cluster" "k8s" {
count = var.resource_count
name = local.cluster_names[count.index]
resource_group_name = azurerm_resource_group.k8s-rg[count.index].name
location = azurerm_resource_group.k8s-rg[count.index].location
dns_prefix = var.dns_prefix
kubernetes_version = "1.27.7"
default_node_pool {
name = "default"
node_count = var.agent_count
vm_size = "Standard_D2_v2"
vnet_subnet_id = azurerm_subnet.node-subnet[count.index].id
pod_subnet_id = azurerm_subnet.pod-subnet[count.index].id
}
# service_principal {
# client_id = var.client_id
# client_secret = var.client_secret
# }
identity {
type = "SystemAssigned"
}
ingress_application_gateway {
gateway_id = azurerm_application_gateway.network[count.index].id
}
network_profile {
load_balancer_sku = "standard"
network_plugin = "azure"
}
tags = {
Environment = "Development -"
}
}