Skip to content

Commit ef0bb01

Browse files
authored
Merge pull request #96 from answerdigital/release-v3
Prepare release v3
2 parents 7fc5a77 + 10853d9 commit ef0bb01

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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=v2"
11+
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v3"
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=v2.0.0`) or to get the latest changes within a major version, use `?ref=v2` which will get the latest v2.x.x release.
18+
Versions are shared across all modules. You can choose a specific tag (e.g. `?ref=v3.0.0`) or to get the latest changes within a major version, use `?ref=v3` which will get the latest v3.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=v2"
81+
source = "github.com/answerdigital/terraform-modules//modules/aws/acme_certificate?ref=v3"
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=v2"
72+
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v3"
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=v2"
100+
source = "github.com/answerdigital/terraform-modules//modules/aws/ec2?ref=v3"
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=v2"
79+
source = "github.com/answerdigital/terraform-modules//modules/aws/rds_serverless_cluster?ref=v3"
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
@@ -68,7 +68,7 @@ Below is a simple example for an example.com zone with a single subdomain record
6868

6969
```terraform
7070
module "example_com" {
71-
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v2"
71+
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v3"
7272
7373
domain = "example.com"
7474
records = {
@@ -91,7 +91,7 @@ the bare domain and www subdomain to the canonical domain.
9191

9292
```terraform
9393
module "example_com" {
94-
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v2"
94+
source = "github.com/answerdigital/terraform-modules//modules/aws/route53?ref=v3"
9595
9696
domain = "example.com"
9797
aliases = [

modules/aws/sso_account_assignment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ resource "aws_organizations_organization" "example" {
4848
}
4949
5050
module "iam_example" {
51-
source = "github.com/answerdigital/terraform-modules//modules/aws/sso_account_assignment?ref=v2"
51+
source = "github.com/answerdigital/terraform-modules//modules/aws/sso_account_assignment?ref=v3"
5252
5353
permission_sets = {
5454
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=v2"
85+
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v3"
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=v2"
92+
source = "github.com/answerdigital/terraform-modules//modules/aws/vpc?ref=v3"
9393
owner = "joe_blogs"
9494
project_name = "example_project_name"
9595
azs = ["eu-west-1", "eu-west-3"]

0 commit comments

Comments
 (0)