Skip to content

Commit

Permalink
fix: Correct IRSA service account annotation (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarsilva948 authored Oct 3, 2024
1 parent 4ddddde commit a67416f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2864,7 +2864,7 @@ module "kms" {


# IAM role for service account (IRSA)
set_irsa_names = ["serviceAccount.annotations.kms\\.amazonaws\\.com/role-arn"]
set_irsa_names = ["serviceAccount.annotations.eks\\.amazonaws\\.com/role-arn"]
create_role = try(var.kms.create_role, true)
role_name = try(var.kms.role_name, "ack-kms")
role_name_use_prefix = try(var.kms.role_name_use_prefix, true)
Expand Down Expand Up @@ -2993,7 +2993,7 @@ module "acm" {


# IAM role for service account (IRSA)
set_irsa_names = ["serviceAccount.annotations.acm\\.amazonaws\\.com/role-arn"]
set_irsa_names = ["serviceAccount.annotations.eks\\.amazonaws\\.com/role-arn"]
create_role = try(var.acm.create_role, true)
role_name = try(var.acm.role_name, "ack-acm")
role_name_use_prefix = try(var.acm.role_name_use_prefix, true)
Expand Down

0 comments on commit a67416f

Please sign in to comment.