Skip to content

Commit

Permalink
Terraform lint fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
hypesystem committed May 9, 2024
1 parent d74f5f7 commit c8b068a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "azurerm_kubernetes_cluster" "cluster" {

# Add a application default nodepool.
resource "azurerm_kubernetes_cluster_node_pool" "pool" {
for_each = var.node_pools
for_each = var.node_pools
name = each.key
kubernetes_cluster_id = azurerm_kubernetes_cluster.cluster.id
vnet_subnet_id = azurerm_subnet.aks.id
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "location" {
variable "node_pools" {
description = "The node pools (other than the system one) used for the cluster"
default = {}
type = map
type = map(any)
}

variable "node_pool_system_count" {
Expand Down

0 comments on commit c8b068a

Please sign in to comment.