You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ya...@apache.org on 2022/04/12 08:48:11 UTC

[kylin] branch kylin4_on_cloud updated: Fix ssm resource issues on aws global env (#1855)

This is an automated email from the ASF dual-hosted git repository.

yaqian pushed a commit to branch kylin4_on_cloud
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/kylin4_on_cloud by this push:
     new d94583fe7b Fix ssm resource issues on aws global env (#1855)
d94583fe7b is described below

commit d94583fe7bc5763db028c61453efb863e9b659f8
Author: Yaqian Zhang <59...@qq.com>
AuthorDate: Tue Apr 12 16:48:05 2022 +0800

    Fix ssm resource issues on aws global env (#1855)
---
 readme/prerequisites.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/readme/prerequisites.md b/readme/prerequisites.md
index 9f5b697585..a93af8b690 100644
--- a/readme/prerequisites.md
+++ b/readme/prerequisites.md
@@ -151,7 +151,7 @@ Users need the following permissions to ensure that subsequent operations can pr
                 "ssm:SendCommand"
             ],
             "Resource": [
-                "arn:aws-cn:ssm:*:*:document/*"
+                "*"
             ]
         },
         {
@@ -160,7 +160,7 @@ Users need the following permissions to ensure that subsequent operations can pr
                 "ssm:SendCommand"
             ],
             "Resource": [
-                "arn:aws-cn:ec2:*:*:instance/*"
+                "*"
             ]
         }
 ```