Skip to content

Commit af93010

Browse files
thomast1906github-actions[bot]
authored andcommitted
Terraform fmt
1 parent a391cbc commit af93010

File tree

1 file changed

+12
-12
lines changed
  • 2-Terraform-AZURE-Services-Creation/4-aks

1 file changed

+12
-12
lines changed

2-Terraform-AZURE-Services-Creation/4-aks/aks.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ resource "azurerm_kubernetes_cluster" "k8s" {
1919
}
2020

2121
default_node_pool {
22-
name = "agentpool"
23-
node_count = var.agent_count
24-
vm_size = var.vm_size
25-
vnet_subnet_id = data.azurerm_subnet.akssubnet.id
26-
type = "VirtualMachineScaleSets"
27-
orchestrator_version = var.kubernetes_version
28-
auto_scaling_enabled = true
29-
min_count = 1
30-
max_count = 3
31-
max_pods = 30
32-
os_disk_size_gb = 30
33-
zones = ["1", "2", "3"]
22+
name = "agentpool"
23+
node_count = var.agent_count
24+
vm_size = var.vm_size
25+
vnet_subnet_id = data.azurerm_subnet.akssubnet.id
26+
type = "VirtualMachineScaleSets"
27+
orchestrator_version = var.kubernetes_version
28+
auto_scaling_enabled = true
29+
min_count = 1
30+
max_count = 3
31+
max_pods = 30
32+
os_disk_size_gb = 30
33+
zones = ["1", "2", "3"]
3434
}
3535

3636
identity {

0 commit comments

Comments
 (0)