File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ resource "azurerm_kubernetes_cluster" "aks" {
19
19
private_cluster_enabled = var. configuration . private_cluster
20
20
local_account_disabled = var. configuration . local_account_disabled
21
21
automatic_channel_upgrade = var. configuration . automatic_channel_upgrade
22
+ private_dns_zone_id = var. private_dns_zone_id
22
23
23
24
default_node_pool {
24
25
name = " defaultpool"
Original file line number Diff line number Diff line change @@ -60,6 +60,11 @@ variable "subnet_id" {
60
60
description = " Id of the subnet to attach aks nodes"
61
61
}
62
62
63
+ variable "private_dns_zone_id" {
64
+ description = " Id of the private dns zone to attach aks"
65
+ default = null
66
+ }
67
+
63
68
variable "tags" {
64
69
description = " Tags to associate with resources."
65
70
type = map (string )
You can’t perform that action at this time.
0 commit comments