File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ module "eks" {
1212
1313 eks_managed_node_group_defaults = {
1414 disk_size = 50
15- instance_types = [" m5 .large" ]
15+ instance_types = [" m6i .large" ]
1616 }
1717
1818 eks_managed_node_groups = {
Original file line number Diff line number Diff line change @@ -14,15 +14,14 @@ resource "azurerm_kubernetes_cluster" "k8s" {
1414 }
1515
1616 default_node_pool {
17- name = replace (var. cluster_name , " -" , " " )
18- vnet_subnet_id = var. vnet_subnet
19- # enable_auto_scaling = false
20- # min_count = 1
21- # max_count = 10
22- node_count = 3
23- vm_size = " Standard_DS2_v2"
24- type = " VirtualMachineScaleSets"
25- os_disk_size_gb = 50
17+ name = replace (var. cluster_name , " -" , " " )
18+ vnet_subnet_id = var. vnet_subnet
19+ enable_auto_scaling = true
20+ min_count = 3
21+ max_count = 5
22+ vm_size = " Standard_DS2_v2"
23+ type = " VirtualMachineScaleSets"
24+ os_disk_size_gb = 50
2625 }
2726
2827 identity {
You can’t perform that action at this time.
0 commit comments