Skip to content

Commit ee9a3ea

Browse files
committed
Remove more
1 parent 6a718f3 commit ee9a3ea

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

scenarios/AksOpenAiTerraform/terraform/modules/node_pool/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ resource "azurerm_kubernetes_cluster_node_pool" "node_pool" {
1313
proximity_placement_group_id = var.proximity_placement_group_id
1414
orchestrator_version = var.orchestrator_version
1515
max_pods = var.max_pods
16-
max_count = var.max_count
17-
min_count = var.min_count
1816
os_disk_size_gb = var.os_disk_size_gb
1917
os_disk_type = var.os_disk_type
2018
os_type = var.os_type

scenarios/AksOpenAiTerraform/terraform/modules/node_pool/variables.tf

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -108,18 +108,6 @@ variable "pod_subnet_id" {
108108
default = null
109109
}
110110

111-
variable "max_count" {
112-
description = "(Required) The maximum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be greater than or equal to min_count."
113-
type = number
114-
default = 10
115-
}
116-
117-
variable "min_count" {
118-
description = "(Required) The minimum number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be less than or equal to max_count."
119-
type = number
120-
default = 3
121-
}
122-
123111
variable resource_group_name {
124112
description = "Specifies the resource group name"
125113
type = string

0 commit comments

Comments
 (0)