Skip to content

Commit a156c07

Browse files
committed
Remove SSH key
1 parent 63a2f0c commit a156c07

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

scenarios/AksOpenAiTerraform/terraform/main.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ module "aks_cluster" {
160160
admin_group_object_ids = var.admin_group_object_ids
161161
azure_rbac_enabled = var.azure_rbac_enabled
162162
admin_username = var.admin_username
163-
ssh_public_key = var.ssh_public_key
164163
keda_enabled = var.keda_enabled
165164
vertical_pod_autoscaler_enabled = var.vertical_pod_autoscaler_enabled
166165
workload_identity_enabled = var.workload_identity_enabled
@@ -289,7 +288,6 @@ module "virtual_machine" {
289288
location = var.location
290289
public_ip = var.vm_public_ip
291290
vm_user = var.admin_username
292-
admin_ssh_public_key = var.ssh_public_key
293291
os_disk_image = var.vm_os_disk_image
294292
resource_group_name = azurerm_resource_group.rg.name
295293
subnet_id = module.virtual_network.subnet_ids[var.vm_subnet_name]

scenarios/AksOpenAiTerraform/terraform/variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -558,11 +558,6 @@ variable "admin_username" {
558558
default = "azadmin"
559559
}
560560

561-
variable "ssh_public_key" {
562-
description = "(Required) Specifies the SSH public key for the jumpbox virtual machine and AKS worker nodes."
563-
type = string
564-
}
565-
566561
variable "keda_enabled" {
567562
description = "(Optional) Specifies whether KEDA Autoscaler can be used for workloads."
568563
type = bool

0 commit comments

Comments
 (0)