Skip to content

Commit

Permalink
Change the default value of a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
PubudU99 committed Dec 9, 2024
1 parent 8fe2a72 commit 8bd6957
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/azurerm/AKS-Generic/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,13 @@ variable "azure_policy_enabled" {
}

variable "aks_nodepool_subnet_enforce_private_link_endpoint_network_policies" {
default = false
default = "Disabled"
description = "Enable or Disable network policies for the private link endpoint on the aks nodepool subnet"
type = bool
type = string
}

variable "internal_load_balancer_subnet_enforce_private_link_endpoint_network_policies" {
default = false
default = "Disabled"
description = "Enable or Disable network policies for the private link endpoint on the internal load balancer subnet"
type = bool
type = string
}

0 comments on commit 8bd6957

Please sign in to comment.