From 7d91f3121ddaccf2f425b302767c4aef2bd5529d Mon Sep 17 00:00:00 2001 From: Xavier Krantz Date: Sat, 9 Mar 2024 17:35:46 +0100 Subject: [PATCH] docs(EKS): Fix ArgoCD management role AssumeRole policy for IRSA --- docs/operator-manual/declarative-setup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/operator-manual/declarative-setup.md b/docs/operator-manual/declarative-setup.md index 1f7f9ab76f273a..2f26a633fd0a2a 100644 --- a/docs/operator-manual/declarative-setup.md +++ b/docs/operator-manual/declarative-setup.md @@ -670,9 +670,9 @@ extended to allow assumption of multiple roles, either as an explicit array of r "Statement" : { "Effect" : "Allow", "Action" : "sts:AssumeRole", - "Principal" : { - "AWS" : ":role/" - } + "Resource" : [ + ":role/" + ] } } ```