This is an experimental example. It may not build out of the box
This examples does is built on Construct Libraries marked "Experimental" and may not be updated for latest breaking changes.
If build is unsuccessful, please create an issue so that we may debug the problem
This example creates the infrastructure for a static site, which uses an S3 bucket for storing the content. The site contents (located in the 'site-contents' sub-directory) are deployed to the bucket.
The site redirects from HTTP to HTTPS, using a CloudFront distribution, Route53 alias record, and ACM certificate.
The domain for the static site (i.e. mystaticsite.com) must be configured as a hosted zone in Route53 prior to deploying this example. For instructions on configuring Route53 as the DNS service for your domain, see the Route53 documentation.
To build this app, run mvn compile. This will download the required
dependencies to compile the Java code.
You can use your IDE to write code and unit tests, but you will need to use the CDK toolkit if you wish to synthesize/deploy stacks.
The cdk.json file in the root of this repository includes
instructions for the CDK toolkit on how to execute this program.
Specifically, it will tell the toolkit to use the mvn exec:java command as the
entry point of your application. After changing your Java code, you will be able
to run the CDK toolkit commands as usual (Maven will recompile as needed):
$ cdk ls
<list all stacks in this program>
$ cdk synth -c domain=mystaticsite.com -c subdomain=www
<cloudformation template>
$ cdk deploy -c domain=mystaticsite.com -c subdomain=www
<deploy stack to your account>
$ cdk diff -c domain=mystaticsite.com -c subdomain=www
<diff against deployed stack>