From 828359b033e0e0acb7b3c98516e3ab862d17b8df Mon Sep 17 00:00:00 2001 From: davidmirror-ops Date: Fri, 29 Sep 2023 13:11:12 -0500 Subject: [PATCH] Fix JSON syntax Signed-off-by: davidmirror-ops --- rsts/deployment/deployment/multicluster.rst | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/rsts/deployment/deployment/multicluster.rst b/rsts/deployment/deployment/multicluster.rst index 5b00cbf1cc..c80de93289 100644 --- a/rsts/deployment/deployment/multicluster.rst +++ b/rsts/deployment/deployment/multicluster.rst @@ -48,20 +48,18 @@ requests successfully, the following environment-specific requirements should be .. code-block:: json + { "Action": [ - "s3:DeleteObject*", "s3:GetObject*", "s3:ListBucket", "s3:PutObject*" - ], - - "Resource": [ - - "arn:aws:s3:::*", - "arn:aws:s3:::*/*" - - ], + ], + "Resource": [ + "arn:aws:s3:::*", + "arn:aws:s3:::/*" + ] + } 2. At least three IAM Roles configured: one for the controlplane components, another for the dataplane and one more for the worker Pods that are bootstraped by Flyte to execute workflow tasks.