https://github.com/davidjeddy/cloudfront_to_supercharger_your_static_website
Cloudfront to supercharger your static website.
https://github.com/davidjeddy/cloudfront_to_supercharger_your_static_website
Last synced: 3 months ago
JSON representation
Cloudfront to supercharger your static website.
- Host: GitHub
- URL: https://github.com/davidjeddy/cloudfront_to_supercharger_your_static_website
- Owner: davidjeddy
- Created: 2019-04-09T20:58:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-15T21:31:50.000Z (about 6 years ago)
- Last Synced: 2025-01-16T11:33:47.031Z (5 months ago)
- Language: HCL
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
**WIP. Not currently functional.**
AWS CloudFront to Supercharge Your Static Website
# Prerequesists
- [AWS account](https://aws.amazon.com/)
- [Set Up API Keys Using the API Gateway Console](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-setup-api-key-with-console.html).
- [You have a domain in Route53 you control.](https://aws.amazon.com/route53/)
- [Terminal](https://en.wikipedia.org/wiki/Linux_console)# Usage
```bash
export ALIASES=test.davidjeddy.me,cdn.davidjeddy.me
export PARENT_ZONE_NAME=davidjeddy.me
./run.sh
```# Common Error Messages:
Error:
```
Error: Error asking for user input: 1 error(s) occurred:* module.cdn.var.aliases: variable aliases in module cdn should be type list, got string
```FIX:
poppulate and export the following two global VARs:
``` bash
export ALIASES=test.davidjeddy.me,cdn.davidjeddy.me
export PARENT_ZONE_NAME=davidjeddy.me
```