Skip to main content

A CDK Python construct to create static S3 websites. This is a port of the AWS static site example https://github.com/aws-samples/aws-cdk-examples/blob/master/typescript/static-site/static-site.ts

Project description

Simple static site CDK construct

This constructs creates a static website hosted on S3.

Requirements

  • Hosted zone in Route53

Usage

This constructs creates:

  • S3 bucket
  • DNS Validated certificate
  • CloudFront web distribution
  • Route53 A record
from aws_cdk.core import Stack, Construct
from static_website import StaticWebsite
from aws_cdk.aws_route53 import HostedZone

class WebSiteStack(Stack):
    def __init__(self, scope: Construct, id: str, **kwargs):

        super().__init__(scope, id, **kwargs)

        # The code that defines your stack goes here

        zone = HostedZone.from_lookup(self, "HostedZone", 
                                      domain_name="mydomain.com", 
                                      private_zone=False)

        StaticWebsite(self, "serverlesslink-website",
                              hosted_zone=zone,
                              site_domain="blog.mydomain.com",
                              sources="../public",
                              website_error="404.html")

Website without custom domain

from aws_cdk.core import Stack, Construct
from static_website import StaticWebsite

class WebSiteStack(Stack):
    def __init__(self, scope: Construct, id: str, **kwargs):

        super().__init__(scope, id, **kwargs)

        # The code that defines your stack goes here
        StaticWebsite(self, "serverlesslink-website",
                              sources="../public",
                              website_error="404.html")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

onema-cdk.static-website-0.1.1.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file onema-cdk.static-website-0.1.1.tar.gz.

File metadata

  • Download URL: onema-cdk.static-website-0.1.1.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5

File hashes

Hashes for onema-cdk.static-website-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b145ee199fba8744f5525ad1185dcaa7fa0a2220f12f9f4ee40a1af5d25e46b3
MD5 3f5dcacf9f019aed3db9c4afbb60ca1a
BLAKE2b-256 083fb79f92133ffa39d351913f1ac46555134752b89966bfe95cd78b7aae1406

See more details on using hashes here.

File details

Details for the file onema_cdk.static_website-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: onema_cdk.static_website-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 3.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.5

File hashes

Hashes for onema_cdk.static_website-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5d2a9e2aae0d52cf8c4044758df381858e85b058e0ba56fcd3e2f5a7a10c0a46
MD5 81cf4ae07e5de2570e1bc08b1c6cbe83
BLAKE2b-256 6201ca43b6e1812a3ab44868fcf343067d00c17430c103472934534377a48bf3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page