Commit f4bdf1b8 authored by michaelguarino's avatar michaelguarino
Browse files

drop aks suffix

parent 1e7d9a35
No related merge requests found
Showing with 6 additions and 1 deletion
+6 -1
......@@ -8,7 +8,7 @@ module "ssh-key" {
}
resource "azurerm_kubernetes_cluster" "main" {
name = "${var.prefix}-aks"
name = var.cluster_name
kubernetes_version = var.kubernetes_version
location = data.azurerm_resource_group.main.location
resource_group_name = data.azurerm_resource_group.main.name
......
......@@ -8,6 +8,11 @@ variable "prefix" {
type = string
}
variable "cluster_name" {
description = "the name to give the AKS cluster resource"
type = string
}
variable "client_id" {
description = "(Optional) The Client ID (appId) for the Service Principal used for the AKS deployment"
type = string
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment