카이도스의 Tech Blog

ALB- S3 로그 연동 본문

AWS

ALB- S3 로그 연동

카이도스 2023. 4. 4. 14:34
728x90
반응형

ALB- S3 로그 연동

s3 생성 → 버킷 생성 → 권한 추가 → alb 로그 연동 → 확인 으로 진행

참고 url - https://bosungtea9416.tistory.com/entry/AWS-ALB-Access-Log-%ED%99%9C%EC%84%B1%ED%99%94-%EB%B0%8F-%EB%B6%84%EC%84%9D%ED%95%98%EA%B8%B0


1. s3 버킷 생성 및 폴더 생성

2. 권한-버킷정책에서 아래 내용으로 편집

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::일련번호:root"
            },
            "Action": "s3:PutObject",
            "Resource": "arn:aws:s3:::s3버킷명/폴더명/*"
        },
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "delivery.logs.amazonaws.com"
            },
            "Action": "s3:PutObject",
            "Resource": "arn:aws:s3:::s3버킷명/폴더명/*",
            "Condition": {
                "StringEquals": {
                    "s3:x-amz-acl": "bucket-owner-full-control"
                }
            }
        },
        {
            "Effect": "Allow",
            "Principal": {
                "Service": "delivery.logs.amazonaws.com"
            },
            "Action": "s3:GetBucketAcl",
            "Resource": "arn:aws:s3:::s3버킷명"
        }
    ]
}

3. alb 로그생성(Attributes→Edit → Monitoring → s3 추가 후 save)

4. 로그 생성 확인

728x90
반응형

'AWS' 카테고리의 다른 글

AWS CLI 자격증명  (0) 2023.05.16
AWS 비용 최적화(예약 인스턴스, savings plans)  (0) 2023.05.10
AWS MongoDB backup - S3  (0) 2023.04.04
EC2-cloudwatch 로그 연동  (0) 2023.03.29
2주차 - 컴퓨팅 서비스  (0) 2023.03.07
Comments