From 85080596e66423e35df92d8fb98a7db52ae0d201 Mon Sep 17 00:00:00 2001 From: Kashif Saadat Date: Mon, 17 Jun 2024 19:03:04 +0300 Subject: [PATCH] Update to Wayfinder v2.7.4 (#53) * chore: update the aks nodepool to v1.29 (#47) * fix: correct output parameter in complete example (#49) * chore: update aks module to version 9.0.0 (#51) Co-authored-by: Adam Smith * feat: update to wayfinder v2.7.4 (#52) --------- Co-authored-by: Mark Hughes Co-authored-by: Adam Smith <21332117+asmith030@users.noreply.github.com> Co-authored-by: Adam Smith --- README.md | 2 +- aks.tf | 2 +- modules/cloudaccess/examples/complete/outputs.tf | 4 ++-- variables.tf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9f07727..0460f41 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ The `terraform-docs` utility is used to generate this README. Follow the below s | [wayfinder\_instance\_id](#input\_wayfinder\_instance\_id) | The instance ID to use for Wayfinder. | `string` | n/a | yes | | [wayfinder\_licence\_key](#input\_wayfinder\_licence\_key) | The licence key to use for Wayfinder | `string` | n/a | yes | | [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.7.1"` | no | +| [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.7.4"` | no | ## Outputs diff --git a/aks.tf b/aks.tf index 37f4b41..d534a2f 100644 --- a/aks.tf +++ b/aks.tf @@ -1,7 +1,7 @@ #tfsec:ignore:azure-container-limit-authorized-ips module "aks" { source = "Azure/aks/azurerm" - version = "8.0.0" + version = "9.0.0" prefix = local.name resource_group_name = var.resource_group_name diff --git a/modules/cloudaccess/examples/complete/outputs.tf b/modules/cloudaccess/examples/complete/outputs.tf index a2de6b0..362390c 100644 --- a/modules/cloudaccess/examples/complete/outputs.tf +++ b/modules/cloudaccess/examples/complete/outputs.tf @@ -1,6 +1,6 @@ output "managed_identity_client_id" { value = module.wayfinder_cloudaccess.managed_identity_client_id } -output "managed_identity_principal_id" { - value = module.wayfinder_cloudaccess.managed_identity_principal_id +output "managed_identity_tenant_id" { + value = module.wayfinder_cloudaccess.managed_identity_tenant_id } diff --git a/variables.tf b/variables.tf index 20d5421..0f47b55 100644 --- a/variables.tf +++ b/variables.tf @@ -318,5 +318,5 @@ variable "wayfinder_release_channel" { variable "wayfinder_version" { description = "The version to use for Wayfinder" type = string - default = "v2.7.1" + default = "v2.7.4" }