달력

4

« 2024/4 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

AWS의 IAM - Identity and Access Management 에서 특정 사용자에게 특정 버킷에 대한 관리자 권한을 부여하고 싶은 경우, 다음과 같이 정책을 설정합니다.


{

    "Version": "2012-10-17",

    "Statement": [

        {

            "Effect": "Allow",

            "Action": "s3:ListAllMyBuckets",

            "Resource": "arn:aws:s3:::*"

        },

        {

            "Effect": "Allow",

            "Action": "s3:*",

            "Resource": [

                "arn:aws:s3:::<버킷 이름>",

                "arn:aws:s3:::<버킷 이름>/*"

            ]

        }

    ]

}



:
Posted by 커널64