Skip to content

Commit a43cc9c

Browse files
committed
Prepare release v5
1 parent f822d79 commit a43cc9c

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ You can use these modules in your own terraform projects as follows:
88

99
```hcl
1010
module "ec2_setup" {
11-
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v4"
11+
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v5"
1212
}
1313
```
1414

1515
Notice the double `//` between the repository URL and the path to the module.
1616
For further information please see the [terraform documentation](https://developer.hashicorp.com/terraform/language/modules/sources#modules-in-package-sub-directories).
1717

18-
Versions are shared across all modules. You can choose a specific tag (e.g. `?ref=v4.0.0`) or to get the latest changes within a major version, use `?ref=v4` which will get the latest v4.x.x release.
18+
Versions are shared across all modules. You can choose a specific tag (e.g. `?ref=v5.0.0`) or to get the latest changes within a major version, use `?ref=v5` which will get the latest v5.x.x release.
1919

2020
## Documentation
2121

modules/aws/acme_certificate/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ data "aws_route53_zone" "test_com" {
7878
}
7979
8080
module "test_project_test_com" {
81-
source = "github.com/answerdigital/terraform-modules//modules/aws/acme_certificate?ref=v4"
81+
source = "github.com/answerdigital/terraform-modules//modules/aws/acme_certificate?ref=v5"
8282
email_address = local.dns_email_address
8383
aws_hosted_zone_id = data.aws_route53_zone.test_com.zone_id
8484
base_domain_name = local.base_domain_name

modules/aws/ec2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ locals {
6969
}
7070
7171
module "vpc_subnet" {
72-
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v4"
72+
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v5"
7373
owner = local.owner
7474
project_name = local.project
7575
enable_vpc_flow_logs = true
@@ -97,7 +97,7 @@ data "aws_availability_zones" "available" {
9797
}
9898
9999
module "ec2_instance_setup" {
100-
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v4"
100+
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v5"
101101
project_name = local.project
102102
owner = local.owner
103103
ami_id = data.aws_ami.ec2_ami.id

modules/aws/rds_serverless_cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Below is an example of how you would call the `rds_serverless_cluster` module in
7676

7777
```hcl
7878
module "rds_cluster_setup" {
79-
source = "github.com/answerdigital/terraform-modules//modules/aws/rds_serverless_cluster?ref=v4"
79+
source = "github.com/answerdigital/terraform-modules//modules/aws/rds_serverless_cluster?ref=v5"
8080
project_name = var.project_name
8181
owner = var.owner
8282
database_availability_zone = module.vpc_subnet_setup.az_zones[0]

modules/aws/route53/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Below is a simple example for an example.com zone with a single subdomain record
6969

7070
```terraform
7171
module "example_com" {
72-
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v4"
72+
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v5"
7373
7474
domain = "example.com"
7575
records = {
@@ -92,7 +92,7 @@ the bare domain and www subdomain to the canonical domain.
9292

9393
```terraform
9494
module "example_com" {
95-
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v4"
95+
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v5"
9696
9797
domain = "example.com"
9898
aliases = [

modules/aws/sso_account_assignment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ resource "aws_organizations_organization" "example" {
4949
}
5050
5151
module "iam_example" {
52-
source = "github.com/answerdigital/terraform-modules//modules/aws/sso_account_assignment?ref=v4"
52+
source = "github.com/answerdigital/terraform-modules//modules/aws/sso_account_assignment?ref=v5"
5353
5454
permission_sets = {
5555
AdministratorAccess = {

modules/aws/vpc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,14 @@ and `eu-west-3` respectively.
8282

8383
```hcl
8484
module "vpc_subnet" {
85-
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v4"
85+
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v5"
8686
owner = "joe_blogs"
8787
project_name = "example_project_name"
8888
enable_vpc_flow_logs = true
8989
}
9090
9191
module "vpc_subnet" {
92-
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v4"
92+
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v5"
9393
owner = "joe_blogs"
9494
project_name = "example_project_name"
9595
azs = ["eu-west-1", "eu-west-3"]

modules/cloudflare/dns/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Below is a simple example for an example.com zone with a single subdomain record
5454

5555
```terraform
5656
module "example_com" {
57-
source = "github.com/answerdigital/terraform-modules//modules/cloudflare/dns?ref=v4"
57+
source = "github.com/answerdigital/terraform-modules//modules/cloudflare/dns?ref=v5"
5858
5959
domain = "example.com"
6060
records = {

0 commit comments

Comments
 (0)