generated from nhs-england-tools/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ This is a Terraform module for deploying a Next.js application built with [OpenN | |
|
||
- [OpenNext Terraform Module for AWS](#opennext-terraform-module-for-aws) | ||
- [Table of Contents](#table-of-contents) | ||
- [Example](#example) | ||
- [Installation](#installation) | ||
- [Prerequisites](#prerequisites) | ||
- [Usage](#usage) | ||
|
@@ -16,6 +17,10 @@ This is a Terraform module for deploying a Next.js application built with [OpenN | |
- [Contacts](#contacts) | ||
- [Licence](#licence) | ||
|
||
## Example | ||
|
||
The example app in `example/` is deployed using the latest version of this Terraform module to [terraform-aws-opennext.tools.engineering.england.nhs.uk](https://terraform-aws-opennext.tools.engineering.england.nhs.uk/). | ||
|
||
## Installation | ||
|
||
Copy and paste the following into your Terraform configuration, edit the variables, and then `terraform init`. | ||
|
@@ -26,10 +31,10 @@ module "opennext" { | |
version = "0.0.1-alpha.5" | ||
prefix = "opennext" | ||
domain_name = "your-domain-name.com" | ||
domain_name = "your-domain-name.com" | ||
acm_certificate_arn = "arn:aws:acm:region:account:certificate/certificate_ID" | ||
hosted_zone_id = "12345" | ||
opennext_build_path = ".open-next" | ||
opennext_build_path = ".open-next" | ||
} | ||
``` | ||
|
||
|
@@ -69,7 +74,6 @@ Describe or link templates on how to raise an issue, feature request or make a c | |
|
||
- Thomas Judd-Cooper - [Email](mailto:[email protected]) - [GitHub](https://github.com/Tomdango) | ||
|
||
|
||
## Licence | ||
|
||
Unless stated otherwise, the codebase is released under the MIT License. This covers both the codebase and any sample code in the documentation. | ||
|