Skip to content

Commit

Permalink
feat: update to Wayfinder v2.7.4 (#69) (#70)
Browse files Browse the repository at this point in the history
* feat: update to wayfinder v2.7.4

* chore: skip trivy checks
  • Loading branch information
KashifSaadat authored Jun 17, 2024
1 parent 478c0a9 commit 41feda7
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,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
1 change: 1 addition & 0 deletions autoscaler.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#trivy:ignore:AVD-AWS-0057
module "autoscaler_irsa_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.39.1"
Expand Down
10 changes: 8 additions & 2 deletions eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module "eks" {
addon_version = var.aws_ebs_csi_driver_addon_version
resolve_conflicts_on_create = "OVERWRITE"
resolve_conflicts_on_update = "OVERWRITE"
service_account_role_arn = module.irsa-ebs-csi-driver.iam_role_arn
service_account_role_arn = module.irsa_ebs_csi_driver.iam_role_arn
}
}

Expand Down Expand Up @@ -197,8 +197,14 @@ module "ebs_kms_key" {
tags = local.tags
}

moved {
from = module.irsa-ebs-csi-driver
to = module.irsa_ebs_csi_driver
}

# tflint-ignore: terraform_naming_convention
module "irsa-ebs-csi-driver" {
#trivy:ignore:AVD-AWS-0057
module "irsa_ebs_csi_driver" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.39.1"

Expand Down
1 change: 1 addition & 0 deletions external-dns.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#trivy:ignore:AVD-AWS-0057
module "externaldns_irsa_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.39.1"
Expand Down
1 change: 1 addition & 0 deletions ingress.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#trivy:ignore:AVD-AWS-0057
module "load_balancer_controller_irsa_role" {
source = "terraform-aws-modules/iam/aws//modules/iam-role-for-service-accounts-eks"
version = "5.39.1"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ variable "wayfinder_release_channel" {
variable "wayfinder_version" {
description = "The version to use for Wayfinder."
type = string
default = "v2.7.1"
default = "v2.7.4"
}

variable "aws_ebs_csi_driver_addon_version" {
Expand Down

0 comments on commit 41feda7

Please sign in to comment.