Quicksight standard account subscription via console

0

Hi, I noticed that the 'standard' account subscription is not available from QS UI anymore, only enterprise subscriptions are created. I have a controlled AWS environment (Labs) where users could create and use STANDARD account subscription. I do not want them to have access to features which are available to 'ENTEPRISE' subscription. I also do not want to create STANDARD account beforehand using API. Is there a way where I can lower the privileges available to these accounts after they are created so that it mimics 'standard'?

AWS
Vish_t
asked 21 days ago73 views
1 Answer
0

Try SCP (Service Control Policy) https://docs.aws.amazon.com/quicksight/latest/user/security-scp.html

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Statement1",
            "Effect": "Deny",
            "Action": [
                "quicksight:Subscribe"
            ],
            "Resource": [
                "*"
            ],
            "Condition": {
                "StringEquals": {
                    "quicksight:Edition": "enterprise"
                }
            }
        }
    ]
}
profile picture
EXPERT
answered 21 days ago
  • I had this, but it prevents user from creating subscription altogether.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions