npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@aws-mdaa/quicksight-account

v1.4.0

Published

MDAA quicksight-account module

Readme

Quicksight Account

The QuickSight Account CDK application is used to configure and deploy resources required for use of QuickSight within an AWS account. Note that manual post-deployment procedures are quired to finalize the QS account configuration for use. For procedures on how to manually configure a QuickSight account to leverage the resources deployed by this CDK, see the Manual Procedures


Deployed Resources and Compliance Details

quicksight-account

QuickSight Service Role - Will be used by QuickSight to setup account-level resources

QuickSight Security Group - Will be used by QuickSight to facilitate connectivity to VPC-connected data sources such as RedShift

  • Will be bound to interfaces of QS VPC connection within the VPC
  • Controls QS network access to VPC data sources (via Egress rules)
    • Note - QS requires matching ingress rule for each egress rule (allowing return traffic from data source to QS)
  • QS VPC connection must be manually created within the QS account post deployment, and should be manually configured with this security group

QuickSight Account - Creates the QS account for the AWS account.

  • Requires manual post deployment configuration in order to use deployed service role and security group

Configuration

MDAA Config

Add the following snippet to your mdaa.yaml under the modules: section of a domain/env in order to use this module:

          quicksight-account: # Module Name can be customized
            module_path: "@aws-caef/quicksight-account" # Must match module NPM package name
            module_configs:
              - ./quicksight-account.yaml # Filename/path can be customized

Module Config (./quicksight-account.yaml)

Config Schema Docs

account:
  edition: "ENTERPRISE" #Can take 'STANDARD'|'ENTERPRISE'|'ENTERPRISE_AND_Q'
  authenticationMethod: "IAM_AND_QUICKSIGHT" #Can take 'IAM_AND_QUICKSIGHT'|'IAM_ONLY'|'ACTIVE_DIRECTORY'
  notificationEmail: "[email protected]"

  # The VPC to which the account will be associated
  vpcId: vpc-abcd1234

  # The subnets to which the account will be associated.
  # Note that QuickSight requires at least 2 subnets be provided.
  subnetIds:
    - test-subnet-id1
    - test-subnet-id2

  # (Optional) - A list of external CIDR ranges which will be provided access to the account via the QuickSight interface.
  # If not specified, access will not be restricted by IP.
  ipRestrictions:
    - cidr: a.b.c.d/n
      description: Restrict to my IP

  # The peers to which the Security Group will be granted access.
  # This controls which resources (data sources) on your VPC the QuickSight service will
  # be able to connect to.
  securityGroupAccess:
    sg:
      - sgId: sg-1234abcd
        port: 5439
        protocol: tcp
    ipv4:
      - cidr: 1.1.1.1/32
        port: 1000
        toPort: 2000
        protocol: tcp

  # Glue resources (databases and tables) to which the QuickSight service account will be provided basic read access
  # This access is used to setup/validate QuickSight data sources
  glueResourceAccess:
    - database/some-database-name*