From 97510812b11d681917de86723fda050bc4387b0f Mon Sep 17 00:00:00 2001 From: Michele Zanotti Date: Mon, 9 Dec 2024 16:10:34 +0000 Subject: [PATCH] chore: upgrade k8s version to 1.30.6 --- README.md | 2 +- variables.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 93e5fce..a992955 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ You can find examples of code that uses this Terraform module in the [examples]( |------|-------------|------|---------|:--------:| | [aks\_cluster\_admin\_group\_object\_ids](#input\_aks\_cluster\_admin\_group\_object\_ids) | Object IDs that are granted the Cluster Admin role over the AKS cluster. | `set(string)` | n/a | yes | | [aks\_cluster\_admin\_users](#input\_aks\_cluster\_admin\_users) | User Principal Names (UPNs) of the users that are granted the Cluster Admin role over the AKS cluster. | `set(string)` | n/a | yes | -| [aks\_kubernetes\_version](#input\_aks\_kubernetes\_version) | The Kubernetes version to use. |
object({
workers = string
control_plane = string
})
|
{
"control_plane": "1.30.3",
"workers": "1.30.3"
}
| no | +| [aks\_kubernetes\_version](#input\_aks\_kubernetes\_version) | The Kubernetes version to use. |
object({
workers = string
control_plane = string
})
|
{
"control_plane": "1.30.6",
"workers": "1.30.6"
}
| no | | [aks\_log\_analytics\_workspace](#input\_aks\_log\_analytics\_workspace) | Existing azurerm\_log\_analytics\_workspace to attach azurerm\_log\_analytics\_solution. Providing the config disables creation of azurerm\_log\_analytics\_workspace. |
object({
id = string
name = string
location = optional(string)
resource_group_name = optional(string)
})
| `null` | no | | [aks\_net\_profile\_dns\_service\_ip](#input\_aks\_net\_profile\_dns\_service\_ip) | IP address within the Kubernetes service address range that is used by cluster service discovery (kube-dns). Must be inluced in net\_profile\_cidr. Example: 10.32.0.10 | `string` | `"10.32.0.10"` | no | | [aks\_net\_profile\_service\_cidr](#input\_aks\_net\_profile\_service\_cidr) | The Network Range used by the Kubernetes service. Must not overlap with the AKS Nodes address space. Example: 10.32.0.0/24 | `string` | `"10.32.0.0/24"` | no | diff --git a/variables.tf b/variables.tf index 8792904..fa6ace4 100644 --- a/variables.tf +++ b/variables.tf @@ -383,8 +383,8 @@ variable "azure_openai_location" { variable "aks_kubernetes_version" { description = "The Kubernetes version to use." default = { - workers = "1.30.3" - control_plane = "1.30.3" + workers = "1.30.6" + control_plane = "1.30.6" } type = object({ workers = string