You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
5
5
**Merged pull requests:**
6
6
7
+
- Implement node\_network\_profile for default node pool [\#598](https://github.com/Azure/terraform-azurerm-aks/pull/598) ([zioproto](https://github.com/zioproto))
7
8
- Bump examples to AKS 1.30 [\#595](https://github.com/Azure/terraform-azurerm-aks/pull/595) ([zioproto](https://github.com/zioproto))
Copy file name to clipboardExpand all lines: variables.tf
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -953,6 +953,14 @@ variable "network_policy" {
953
953
description=" (Optional) Sets up network policy to be used with Azure CNI. Network policy allows us to control the traffic flow between pods. Currently supported values are calico and azure. Changing this forces a new resource to be created."
954
954
}
955
955
956
+
variable"node_network_profile" {
957
+
type=object({
958
+
node_public_ip_tags =optional(map(string))
959
+
})
960
+
default=null
961
+
description="(Optional) Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created."
962
+
}
963
+
956
964
variable"node_os_channel_upgrade" {
957
965
type=string
958
966
default=null
@@ -1165,14 +1173,6 @@ variable "node_pools" {
1165
1173
nullable=false
1166
1174
}
1167
1175
1168
-
variable"node_network_profile" {
1169
-
type=object({
1170
-
node_public_ip_tags =optional(map(string))
1171
-
})
1172
-
default=null
1173
-
description="(Optional) Specifies a mapping of tags to the instance-level public IPs. Changing this forces a new resource to be created."
0 commit comments