Skip to content

Commit

Permalink
Added typo fixes for irsa role and policy resource name (#215)
Browse files Browse the repository at this point in the history
Co-authored-by: Aastha Gupta <[email protected]>
  • Loading branch information
velotioaastha and Aastha Gupta authored May 24, 2024
1 parent 547ab22 commit 45e1d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/app_eks/iam-role-attachments.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ resource "aws_iam_role_policy_attachment" "node_secrets_manager" {
# Attach IRSA Policy to the IRSA Role
resource "aws_iam_policy_attachment" "irsa" {
name = "irsa-policy-attachment"
roles = [aws_iam_role.irsa_role.name]
policy_arn = aws_iam_policy.irsa_policy.arn
roles = [aws_iam_role.irsa.name]
policy_arn = aws_iam_policy.irsa.arn
}

0 comments on commit 45e1d74

Please sign in to comment.