Skip to content

Commit

Permalink
Update README, remove release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomdango committed Jul 14, 2023
1 parent 37fbfeb commit 1d1cdcf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 44 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/release.yaml

This file was deleted.

17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,24 @@ Copy and paste the following into your Terraform configuration, edit the variabl
```tf
module "opennext" {
source = "nhs-england-tools/opennext/aws"
version = "0.0.1-alpha.5"
version = "1.0.0" # Use the latest release from https://github.com/nhs-england-tools/terraform-aws-opennext/releases
prefix = "opennext"
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"
prefix = "opennext" # Prefix for all created resources
opennext_build_path = "../.open-next" # Path to your .open-next folder
hosted_zone_id = data.aws_route53_zone.zone.zone_id # The Route53 hosted zone ID for your domain name
cloudfront = {
aliases = [local.domain_name] # Your domain name
acm_certificate_arn = aws_acm_certificate_validation.ssl_certificate.certificate_arn # The ACM (SSL) certificate for your domain
}
}
```

### Prerequisites

The following software packages or their equivalents are expected to be installed

- [Terraform](https://developer.hashicorp.com/terraform/downloads) (>=1.3)
- [Terraform](https://developer.hashicorp.com/terraform/downloads) (>=1.5)

## Usage

Expand Down
1 change: 0 additions & 1 deletion example/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ locals {
}
}


provider "aws" {
region = "eu-west-2"

Expand Down

0 comments on commit 1d1cdcf

Please sign in to comment.