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.6.0

Published

MDAA quicksight-account module

Downloads

93

Readme

QuickSight Account

Note: This documentation is also available in a rendered format here.

Configures and deploys account-level QuickSight resources including the QuickSight account, VPC connection security group, service role, and IP restrictions. Manual post-deployment procedures are required to finalize the account configuration. See Manual Procedures. Use this module when you need to set up QuickSight for the first time in an AWS account, establishing the foundation for BI dashboards and data visualization.

⚠️ Account-Level Module — This module can only be deployed once per AWS account. A second deployment to the same account will fail. See Account-Level Modules for details.


Deployed Resources

This module deploys and integrates the following resources:

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

QuickSight Security Group - Security group for QuickSight VPC connection, controlling network access to VPC-connected data sources such as Redshift.

  • 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

quicksight-account


Related Modules

  • QuickSight Namespace — Create namespaces for multi-tenant isolation within the QuickSight account configured here
  • QuickSight Project — Deploy shared folders and data sources within the QuickSight account
  • Data Warehouse — Deploy a Redshift cluster that QuickSight can connect to as a VPC data source
  • Roles — Create IAM roles for QuickSight SAML federation

Security/Compliance Details

This module is designed in alignment with MDAA security/compliance principles and CDK nag rulesets. Additional review is recommended prior to production deployment, ensuring organization-specific compliance requirements are met.

  • Least Privilege:
    • Service role follows least-privilege for account-level operations
    • Glue resource access scoped to specific databases/tables
  • Network Isolation:
    • Security group controls QuickSight connectivity to VPC data sources
    • VPC connection binds QuickSight to specific subnets
    • QuickSight requires matching ingress rule for each egress rule (allowing return traffic from data source)
    • Optional IP restrictions limit QuickSight console access to approved CIDR ranges

AWS Service Endpoints

The following VPC endpoints may be required if public AWS service endpoint connectivity is unavailable (e.g., private subnets without NAT gateway, firewalled environments, or PrivateLink-only architectures):

| AWS Service | Endpoint Service Name | Type | | --------------- | -------------------------------------- | --------- | | QuickSight | com.amazonaws.{region}.quicksight | Interface | | Glue | com.amazonaws.{region}.glue | Interface | | Athena | com.amazonaws.{region}.athena | Interface | | Redshift | com.amazonaws.{region}.redshift | Interface | | Lake Formation | com.amazonaws.{region}.lakeformation | Interface | | S3 | com.amazonaws.{region}.s3 | Gateway | | STS | com.amazonaws.{region}.sts | Interface | | CloudWatch Logs | com.amazonaws.{region}.logs | Interface |


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-mdaa/quicksight-account' # Must match module NPM package name
  module_configs:
    - ./quicksight-account.yaml # Filename/path can be customized

Module Config Samples and Variants

Copy the contents of the relevant sample config below into the ./quicksight-account.yaml file referenced in the MDAA config snippet above.

Minimal Configuration

Demonstrates the simplest valid configuration with only required properties, using STANDARD edition and IAM_ONLY authentication. Start here for a quick QuickSight account setup before adding VPC connections, IP restrictions, or enterprise features.

sample-config-minimal.yaml

# Contents available via above link
--8<-- "target/docs/packages/apps/analytics/quicksight-account-app/sample_configs/sample-config-minimal.yaml"

Comprehensive Configuration

Configures a QuickSight Enterprise account with IAM+QuickSight authentication, VPC connection with security group access rules, IP restrictions, and Glue catalog read access for data source validation. Use this as a reference when you need full control over authentication, network connectivity, and catalog access for a production QuickSight account.

sample-config-comprehensive.yaml

# Contents available via above link
--8<-- "target/docs/packages/apps/analytics/quicksight-account-app/sample_configs/sample-config-comprehensive.yaml"

Enterprise+Q Edition Configuration

Demonstrates ENTERPRISE_AND_Q edition with ACTIVE_DIRECTORY authentication. Choose this variant when your organization requires QuickSight Q (natural language querying) and Active Directory-based authentication.

sample-config-enterprise-q.yaml

# Contents available via above link
--8<-- "target/docs/packages/apps/analytics/quicksight-account-app/sample_configs/sample-config-enterprise-q.yaml"

Config Schema Docs