Skip to content

Commit bdf5b10

Browse files
committed
Remove explicit hardocdings
1 parent 995ec7a commit bdf5b10

File tree

4 files changed

+0
-15
lines changed

4 files changed

+0
-15
lines changed

scenarios/AksOpenAiTerraform/terraform/main.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ module "node_pool" {
194194
max_pods = var.user_node_pool_max_pods
195195
max_count = var.user_node_pool_max_count
196196
min_count = var.user_node_pool_min_count
197-
node_count = var.user_node_pool_node_count
198197
os_type = var.user_node_pool_os_type
199198
priority = var.user_node_pool_priority
200199
tags = var.tags

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ resource "azurerm_kubernetes_cluster" "aks_cluster" {
5050
max_pods = var.system_node_pool_max_pods
5151
max_count = var.system_node_pool_max_count
5252
min_count = var.system_node_pool_min_count
53-
node_count = var.system_node_pool_node_count
5453
os_disk_type = var.system_node_pool_os_disk_type
5554
tags = var.tags
5655
}

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,5 @@ resource "azurerm_monitor_diagnostic_setting" "settings" {
4343

4444
enabled_log {
4545
category = "NetworkSecurityGroupRuleCounter"
46-
enabled = true
4746
}
4847
}

scenarios/AksOpenAiTerraform/terraform/variables.tf

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -254,12 +254,6 @@ variable "system_node_pool_min_count" {
254254
default = 3
255255
}
256256

257-
variable "system_node_pool_node_count" {
258-
description = "(Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be a value in the range min_count - max_count."
259-
type = number
260-
default = 3
261-
}
262-
263257
variable "user_node_pool_name" {
264258
description = "(Required) Specifies the name of the node pool."
265259
type = string
@@ -350,12 +344,6 @@ variable "user_node_pool_min_count" {
350344
default = 3
351345
}
352346

353-
variable "user_node_pool_node_count" {
354-
description = "(Optional) The initial number of nodes which should exist within this Node Pool. Valid values are between 0 and 1000 and must be a value in the range min_count - max_count."
355-
type = number
356-
default = 3
357-
}
358-
359347
variable "storage_account_kind" {
360348
description = "(Optional) Specifies the account kind of the storage account"
361349
default = "StorageV2"

0 commit comments

Comments
 (0)