diff --git a/README.md b/README.md index ea0765d..36be973 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ The `terraform-docs` utility is used to generate this README. Follow the below s | [venafi\_zone](#input\_venafi\_zone) | Venafi zone - required if using Venafi cluster issuer | `string` | `""` | no | | [wayfinder\_idp\_details](#input\_wayfinder\_idp\_details) | The IDP details to use for Wayfinder to enable SSO |
object({
type = string
clientId = optional(string)
clientSecret = optional(string)
serverUrl = optional(string)
azureTenantId = optional(string)
})
|
{
"azureTenantId": "",
"clientId": null,
"clientSecret": null,
"serverUrl": "",
"type": "none"
}
| no | | [wayfinder\_release\_channel](#input\_wayfinder\_release\_channel) | The release channel to use for Wayfinder | `string` | `"wayfinder-releases"` | no | -| [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.8.6"` | no | +| [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.9.6"` | no | ## Outputs diff --git a/external-dns.tf b/external-dns.tf index bad7e42..696d974 100644 --- a/external-dns.tf +++ b/external-dns.tf @@ -39,7 +39,7 @@ resource "helm_release" "external_dns" { name = "external-dns" repository = "https://kubernetes-sigs.github.io/external-dns" chart = "external-dns" - version = "1.14.4" + version = "1.15.0" max_history = 5 values = [ diff --git a/ingress.tf b/ingress.tf index edfdebd..f97ac7f 100644 --- a/ingress.tf +++ b/ingress.tf @@ -22,7 +22,7 @@ resource "helm_release" "ingress" { name = "ingress-nginx" repository = "https://kubernetes.github.io/ingress-nginx" chart = "ingress-nginx" - version = "4.10.1" + version = "4.11.2" max_history = 5 values = [ diff --git a/variables.tf b/variables.tf index 94f4664..09cb4a3 100644 --- a/variables.tf +++ b/variables.tf @@ -336,5 +336,5 @@ variable "wayfinder_release_channel" { variable "wayfinder_version" { description = "The version to use for Wayfinder" type = string - default = "v2.8.6" + default = "v2.9.6" }