我想连接账户 A 中的 ec2 实例,该实例应该能够从账户 A 和另一个账户 B 访问存储桶。如何实现?

发布于 2025-01-10 11:27:42 字数 337 浏览 0 评论 0原文

我看到了官方文档 https://aws.amazon。 com/premiumsupport/knowledge-center/s3-instance-access-bucket/ 表示要在帐户中创建角色并附加! 我有另一个解决方案,即在账户 B 中创建一个 IAM 用户并仅授予其 S3 存储桶权限,并使用该用户在账户 B 中配置 EC2 实例。那么如果我这样做会有效吗? EC2实例仍然可以从其帐户访问S3吗?

I saw the official documentation https://aws.amazon.com/premiumsupport/knowledge-center/s3-instance-access-bucket/ which says to create role in both account and attach!
I had another solution which is create an IAM user in account B and grant it only S3 bucket permissions and config the EC2 Instance in Account B with that user. So if i do that will it work? and can the EC2 instance still access the S3 from the its account?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↘紸啶 2025-01-17 11:27:42

您的情况似乎是:

  • 账户 A 中的 Amazon EC2 实例
  • 账户 A 中的 Amazon S3 存储桶 (Bucket-A)
  • Amazon S3账户 B (Bucket-B) 中的存储桶
  • 您希望 EC2 实例能够访问这两个存储桶

您应该执行以下操作:

  • 创建 IAM 角色角色-A) Amazon EC2 实例具有:
    • 访问Bucket-A的权限
    • 访问Bucket-B的权限
  • 存储桶策略添加到Bucket-B 允许从 Role-A 访问存储桶(这将授予“跨账户访问权限”)

就是这样!由于 IAM 角色的权限,实例将能够访问 Bucket-A,并且由于 IAM 角色的权限,实例将能够访问 Bucket-B和桶政策。

It appears that your situation is:

  • Amazon EC2 instance in Account A
  • Amazon S3 bucket in Account A (Bucket-A)
  • Amazon S3 bucket in Account B (Bucket-B)
  • You would like the EC2 instance to be able to access both buckets

You should do the following:

  • Create an IAM Role (Role-A) for the Amazon EC2 instance with:
    • Permission to access Bucket-A, and
    • Permission to access Bucket-B
  • Add a Bucket policy to Bucket-B that permits access to the bucket from Role-A (This will grant "cross-account access")

That's it! The instance will be able to access Bucket-A due to permissions in the IAM Role, and it will be able to access Bucket-B due to permissions in both the IAM Role and the Bucket Policy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文