We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51eb17c commit 47cb7a2Copy full SHA for 47cb7a2
modules/iam-role-for-service-accounts-eks/policies.tf
@@ -341,6 +341,17 @@ data "aws_iam_policy_document" "efs_csi" {
341
}
342
343
344
+ statement {
345
+ actions = ["elasticfilesystem:TagResource"]
346
+ resources = ["*"]
347
+
348
+ condition {
349
+ test = "StringLike"
350
+ variable = "aws:RequestTag/efs.csi.aws.com/cluster"
351
+ values = ["true"]
352
+ }
353
354
355
statement {
356
actions = ["elasticfilesystem:DeleteAccessPoint"]
357
resources = ["*"]
0 commit comments