From 1386373835e1683f54d29bbe1c1a3fa31a0c876b Mon Sep 17 00:00:00 2001 From: Altonhe Date: Fri, 16 Aug 2024 21:42:25 -0400 Subject: [PATCH] fix lint --- modules/azure-aks/variables.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/azure-aks/variables.tf b/modules/azure-aks/variables.tf index 89de072..7c32e1b 100644 --- a/modules/azure-aks/variables.tf +++ b/modules/azure-aks/variables.tf @@ -1,21 +1,25 @@ variable "location" { description = "The location where the resources will be created." default = "East US" + type = string } variable "resource_group_name" { description = "The name of the resource group" default = "aks-rg" + type = string } variable "aks_cluster_name" { description = "The name of the AKS cluster." default = "aks-cluster" + type = string } variable "dns_prefix" { description = "The DNS prefix for the AKS cluster." default = "aks" + type = string } variable "tags" {