AWS/IAM1 S3 delete_objects access denied S3 버킷에 이미지를 삭제하기위해 boto3를 연결 client = boto3.client('s3', aws_access_key_id = Config.ACCESS_KEY, aws_secret_access_key = Config.SECRET_ACCESS ) 삭제 메소드를 실행 client.delete_objects( Bucket=Config.BUCKET_NAME, Delete={ 'Objects': [ { 'Key': imgUrl } ], }, ) an error occurred (accessdenied) when calling the deleteobject operation: access denied 액세스 권한이 없다는 에러 메세지를 반환했다. 나는 S3 풀액세스 권한을 분명히 설정해두었고 ACL도 문.. 2023. 3. 15. 이전 1 다음