Skip to content

Commit ae9e19c

Browse files
committed
chore: Add trailing commas
1 parent 6f65f16 commit ae9e19c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

modules/iam-role-for-service-accounts-eks/policies.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ data "aws_iam_policy_document" "fsx_lustre_csi" {
671671
actions = [
672672
"iam:CreateServiceLinkedRole",
673673
"iam:AttachRolePolicy",
674-
"iam:PutRolePolicy"
674+
"iam:PutRolePolicy",
675675
]
676676
resources = var.fsx_lustre_csi_service_role_arns
677677
}
@@ -718,7 +718,6 @@ resource "aws_iam_role_policy_attachment" "fsx_lustre_csi" {
718718
policy_arn = aws_iam_policy.fsx_lustre_csi[0].arn
719719
}
720720

721-
722721
################################################################################
723722
# FSx for OpenZFS CSI Driver Policy
724723
################################################################################
@@ -731,7 +730,7 @@ data "aws_iam_policy_document" "fsx_openzfs_csi" {
731730
actions = [
732731
"iam:CreateServiceLinkedRole",
733732
"iam:AttachRolePolicy",
734-
"iam:PutRolePolicy"
733+
"iam:PutRolePolicy",
735734
]
736735
resources = var.fsx_openzfs_csi_service_role_arns
737736
}
@@ -760,7 +759,7 @@ data "aws_iam_policy_document" "fsx_openzfs_csi" {
760759
"fsx:DeleteSnapshot",
761760
"fsx:DescribeSnapshots",
762761
"fsx:TagResource",
763-
"fsx:ListTagsForResource"
762+
"fsx:ListTagsForResource",
764763
]
765764
resources = ["*"]
766765
}

0 commit comments

Comments
 (0)