We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b12ed1 + 7bc9022 commit 4d1422cCopy full SHA for 4d1422c
2 files changed
terraform/modules/az-aks/main.tf
@@ -19,6 +19,7 @@ resource "azurerm_kubernetes_cluster" "aks" {
19
private_cluster_enabled = var.configuration.private_cluster
20
local_account_disabled = var.configuration.local_account_disabled
21
automatic_channel_upgrade = var.configuration.automatic_channel_upgrade
22
+ private_dns_zone_id = var.private_dns_zone_id
23
24
default_node_pool {
25
name = "defaultpool"
terraform/modules/az-aks/variables.tf
@@ -60,6 +60,11 @@ variable "subnet_id" {
60
description = "Id of the subnet to attach aks nodes"
61
}
62
63
+variable "private_dns_zone_id" {
64
+ description = "Id of the private dns zone to attach aks"
65
+ default = null
66
+}
67
+
68
variable "tags" {
69
description = "Tags to associate with resources."
70
type = map(string)
0 commit comments