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

s3-secure-bucket

v0.2.3

Published

[![GitHub](https://img.shields.io/github/license/gammarers-aws-cdk-resources/s3-secure-bucket?style=flat-square)](https://github.com/gammarers-aws-cdk-resources/s3-secure-bucket/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/s3-secure-buc

Readme

S3 Secure Bucket (AWS CDK v2)

GitHub npm version GitHub Workflow Status (branch) GitHub Workflow Status (branch) GitHub release (latest SemVer)

AWS CDK v2 construct library: an s3.Bucket with security-focused defaults (private ACLs, block public access, TLS-only access, encryption, versioning, BucketOwnerEnforced, RemovalPolicy.RETAIN). Use bucketType for pipeline artifacts, CloudFront origins, and centralized access logs so encryption and bucket policies match each workload.

Features

  • Private access, block public access, and deny insecure transport (enforceSSL)
  • Default bucket: KMS-managed encryption (aws:kms) unless overridden
  • Log / origin types: S3-managed encryption (AES256) for ACCESS_LOG_BUCKET and CLOUDFRONT_ORIGIN_BUCKET
  • Versioning on by default; object ownership BucketOwnerEnforced by default
  • RemovalPolicy.RETAIN on the bucket
  • bucketType presets
    • DEPLOYMENT_PIPELINE_ARTIFACT_BUCKET: optional s3:* grant for the CDK deploy role when using a non-default bootstrap qualifier
    • CLOUDFRONT_ORIGIN_BUCKET: S3-managed encryption for typical origin use
    • ACCESS_LOG_BUCKET: s3:PutObject on AWSLogs/<account>/* for ALB/NLB (logdelivery.elasticloadbalancing.amazonaws.com + regional ELBv2 account from aws-cdk-lib/region-info when known), CloudFront standard logging (delivery.logs.amazonaws.com), and S3 server access logging (logging.s3.amazonaws.com)
  • accessLogBucketPolicyDependable (access-log buckets only): use with loadBalancer.node.addDependency(...) so ALB/NLB access-log enablement runs after the bucket policy exists (avoids validation PutObject failures)

Installation

npm

npm install s3-secure-bucket

yarn

yarn add s3-secure-bucket

Usage

Default secure bucket

import { Stack } from 'aws-cdk-lib';
import { S3SecureBucket } from 's3-secure-bucket';

declare const stack: Stack;

const bucket = new S3SecureBucket(stack, 'S3SecureBucket', {
  bucketName: 'example-secure-bucket',
});

Centralized access log bucket (ALB / NLB / CloudFront / S3)

For ACCESS_LOG_BUCKET, the stack env.region must be a concrete region at synthesis time (not a token) so the regional ELBv2 log-delivery account ID can be resolved.

import { Stack } from 'aws-cdk-lib';
import { S3SecureBucket, S3SecureBucketType } from 's3-secure-bucket';

declare const stack: Stack;

const accessLogBucket = new S3SecureBucket(stack, 'AccessLogBucket', {
  bucketType: S3SecureBucketType.ACCESS_LOG_BUCKET,
});

// After creating your load balancer (e.g. elbv2.ApplicationLoadBalancer), depend on the bucket policy
// so ELB's validation PutObject runs after the policy exists:
// loadBalancer.node.addDependency(accessLogBucket.accessLogBucketPolicyDependable!);

Wire logging on the load balancer using your normal approach (for example L1 attributes or another construct). This library only configures the bucket and its resource policy.

Options

S3SecureBucket accepts S3SecureBucketProps, which extends s3.BucketProps. Standard options such as bucketName, versioned, encryption, and lifecycleRules work as usual alongside the secure defaults.

Construct props (S3SecureBucketProps)

| Property | Type | Default | Description | | --- | --- | --- | --- | | bucketType | S3SecureBucketType | DEFAULT_BUCKET | Selects encryption defaults and optional resource-policy statements. | | (inherited) | s3.BucketProps | — | All other Bucket properties are passed through (some receive overrides inside the construct). |

S3SecureBucketType values

| Constant | Use case | | --- | --- | | S3SecureBucketType.DEFAULT_BUCKET | General-purpose secure bucket | | S3SecureBucketType.ACCESS_LOG_BUCKET | Centralized access logs (AWSLogs/<account>/* writers only) | | S3SecureBucketType.DEPLOYMENT_PIPELINE_ARTIFACT_BUCKET | CDK pipeline artifact bucket (custom bootstrap qualifier) | | S3SecureBucketType.CLOUDFRONT_ORIGIN_BUCKET | CloudFront origin bucket |

Read-only: accessLogBucketPolicyDependable

| Property | Type | When set | Description | | --- | --- | --- | --- | | accessLogBucketPolicyDependable | IDependable \| undefined | bucketType === ACCESS_LOG_BUCKET | Depend on this from ALB/NLB so access-log configuration waits for the bucket policy resource. |

See API.md for the full API reference.

Requirements

  • Node.js >= 20
  • Peer dependencies: aws-cdk-lib ^2.232.0, constructs ^10.5.1

License

This project is licensed under the Apache-2.0 License.