Skip to content

Instantly share code, notes, and snippets.

@madan712
Last active December 31, 2023 15:16
Show Gist options
  • Save madan712/8d4ad0ec66587e392457cf7a6bfa5ecc to your computer and use it in GitHub Desktop.
Save madan712/8d4ad0ec66587e392457cf7a6bfa5ecc to your computer and use it in GitHub Desktop.
AWS IAM Role to fetch QuickSight embed URL
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "quicksight:RegisterUser",
"Resource": "*",
"Effect": "Allow"
},
{
"Action": "quicksight:GetDashboardEmbedUrl",
"Resource": "arn:aws:quicksight:us-east-1:580803390928:dashboard/*",
"Effect": "Allow"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment