-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README for Terraform Registry
- Loading branch information
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
# AWS S3 Static Website Terraform Module | ||
|
||
Terraform Module for an Amazon S3 Static Website, fronted by a CloundFront Distribution. | ||
[Terraform Module](https://registry.terraform.io/modules/conortm/s3-static-website) for an Amazon S3 Static Website, fronted by a CloundFront Distribution. | ||
|
||
**Note:** This module "works" but is still in development. See [TODO section](#todo). Also, suggestions welcome! | ||
|
||
## Features | ||
|
||
|
@@ -18,8 +20,8 @@ It requires (for now?) that the following have been setup outside this module: | |
## Usage | ||
|
||
```HCL | ||
module "static_website" { | ||
source = "[email protected]:conortm/terraform-aws-s3-static-website.git" | ||
module "s3-static-website" { | ||
source = "conortm/s3-static-website/aws" | ||
domain_name = "www.my-aws-s3-static-website.com" | ||
redirects = ["my-aws-s3-static-website.com"] | ||
|