Skip to content

Commit

Permalink
chore: upgrade k8s version to 1.30.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Telemaco019 committed Dec 9, 2024
1 parent 2530d2b commit 9751081
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ You can find examples of code that uses this Terraform module in the [examples](
|------|-------------|------|---------|:--------:|
| <a name="input_aks_cluster_admin_group_object_ids"></a> [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 |
| <a name="input_aks_cluster_admin_users"></a> [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 |
| <a name="input_aks_kubernetes_version"></a> [aks\_kubernetes\_version](#input\_aks\_kubernetes\_version) | The Kubernetes version to use. | <pre>object({<br/> workers = string<br/> control_plane = string<br/> })</pre> | <pre>{<br/> "control_plane": "1.30.3",<br/> "workers": "1.30.3"<br/>}</pre> | no |
| <a name="input_aks_kubernetes_version"></a> [aks\_kubernetes\_version](#input\_aks\_kubernetes\_version) | The Kubernetes version to use. | <pre>object({<br/> workers = string<br/> control_plane = string<br/> })</pre> | <pre>{<br/> "control_plane": "1.30.6",<br/> "workers": "1.30.6"<br/>}</pre> | no |
| <a name="input_aks_log_analytics_workspace"></a> [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. | <pre>object({<br/> id = string<br/> name = string<br/> location = optional(string)<br/> resource_group_name = optional(string)<br/> })</pre> | `null` | no |
| <a name="input_aks_net_profile_dns_service_ip"></a> [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 |
| <a name="input_aks_net_profile_service_cidr"></a> [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 |
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9751081

Please sign in to comment.