Skip to content

Commit

Permalink
Update to Wayfinder v2.7.4 (#53)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

* feat: update to wayfinder v2.7.4 (#52)

---------

Co-authored-by: Mark Hughes <[email protected]>
Co-authored-by: Adam Smith <[email protected]>
Co-authored-by: Adam Smith <[email protected]>
  • Loading branch information
4 people authored Jun 17, 2024
1 parent 99450d5 commit 8508059
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ The `terraform-docs` utility is used to generate this README. Follow the below s
| <a name="input_wayfinder_instance_id"></a> [wayfinder\_instance\_id](#input\_wayfinder\_instance\_id) | The instance ID to use for Wayfinder. | `string` | n/a | yes |
| <a name="input_wayfinder_licence_key"></a> [wayfinder\_licence\_key](#input\_wayfinder\_licence\_key) | The licence key to use for Wayfinder | `string` | n/a | yes |
| <a name="input_wayfinder_release_channel"></a> [wayfinder\_release\_channel](#input\_wayfinder\_release\_channel) | The release channel to use for Wayfinder | `string` | `"wayfinder-releases"` | no |
| <a name="input_wayfinder_version"></a> [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.7.1"` | no |
| <a name="input_wayfinder_version"></a> [wayfinder\_version](#input\_wayfinder\_version) | The version to use for Wayfinder | `string` | `"v2.7.4"` | no |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion aks.tf
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions modules/cloudaccess/examples/complete/outputs.tf
Original file line number Diff line number Diff line change
@@ -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
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit 8508059

Please sign in to comment.