QuickSight Dashboard Image Display Issues with S3 Bucket Integration

0

I am building QuickSight dashboards (for website embedding) and want to display images from S3 bucket. For this I am using Object URL in HTTPS format. However, the problem is that those images are not getting displayed in the dashboards.

I tried the following:

  1. My S3 bucket is non-public, but I opened all the necessary permissions for QS role to access that bucket. Did not work.
  2. I made S3 bucket as public, but applied the following bucket policy to open the bucket for QS role:
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "PublicReadGetObject",
            "Effect": "Allow",
            "Principal": "*",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::<bucket-name>/*",
            "Condition": {
                "StringEquals": {
                    "aws:PrincipalARN": "arn:aws:iam::<account-id>:role/aws-quicksight-service-role-manual"
                }
            }
        }
    ]
}

This solution did not work. It seems QuickSight is not using its role for accessing S3 bucket objects.

  1. I made S3 bucket as public without any bucket policies. This works, but we can't afford this solution - our bucket shouldn't be visible to the world.

Any suggestions?

Almaz
preguntada hace 2 meses232 visualizaciones
1 Respuesta
2
profile picture
EXPERTO
respondido hace 2 meses
profile picture
EXPERTO
Artem
revisado hace un mes
  • As I already mentioned, I already opened all the necessary permissions from QS to that S3.

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas