Skip to content

Commit 4c5ce5d

Browse files
updated and upgraded
1 parent 7295372 commit 4c5ce5d

File tree

7 files changed

+23
-16
lines changed

7 files changed

+23
-16
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ repos:
33
rev: v1.30.0
44
hooks:
55
- id: terraform_fmt
6-
- id: terraform_tflint
76

87
- repo: https://github.com/pre-commit/pre-commit-hooks
98
rev: v3.1.0

README.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ github_repo: clouddrove/terraform-aws-elasticache
1616
# Badges to display
1717
badges:
1818
- name: "Terraform"
19-
image: "https://img.shields.io/badge/Terraform-v0.12-green"
19+
image: "https://img.shields.io/badge/terraform-v0.13-green"
2020
url: "https://www.terraform.io"
2121
- name: "Licence"
2222
image: "https://img.shields.io/badge/License-MIT-blue.svg"
@@ -36,7 +36,7 @@ usage : |-
3636
### Redis
3737
```hcl
3838
module "redis" {
39-
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.12.4"
39+
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.13.0"
4040
name = "redis"
4141
application = "clouddrove"
4242
environment = "test"
@@ -57,7 +57,7 @@ usage : |-
5757
### Redis Cluster
5858
```hcl
5959
module "redis-cluster" {
60-
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.12.4"
60+
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.13.0"
6161
name = "cluster"
6262
application = "clouddrove"
6363
environment = "test"
@@ -80,7 +80,7 @@ usage : |-
8080
### Memcache
8181
```hcl
8282
module "memcached" {
83-
source = "https://github.com/clouddrove/terraform-aws-s3?ref=tags/0.12.4"
83+
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.13.0"
8484
name = "memcached"
8585
application = "clouddrove"
8686
environment = "test"

_example/memcached/example.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ provider "aws" {
33
}
44

55
module "vpc" {
6-
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.12.4"
6+
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.13.0"
77

88
name = "vpc"
99
application = "clouddrove"
@@ -14,7 +14,7 @@ module "vpc" {
1414
}
1515

1616
module "subnets" {
17-
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.4"
17+
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
1818

1919
name = "subnets"
2020
application = "clouddrove"
@@ -23,13 +23,14 @@ module "subnets" {
2323

2424
availability_zones = ["eu-west-1a", "eu-west-1b", "eu-west-1c"]
2525
vpc_id = module.vpc.vpc_id
26+
ipv6_cidr_block = module.vpc.ipv6_cidr_block
2627
type = "public"
2728
igw_id = module.vpc.igw_id
2829
cidr_block = module.vpc.vpc_cidr_block
2930
}
3031

3132
module "memcached-sg" {
32-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.3"
33+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
3334

3435
name = "ssh"
3536
application = "clouddrove"

_example/redis-cluster/example.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ provider "aws" {
33
}
44

55
module "vpc" {
6-
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.12.4"
6+
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.13.0"
77

88
name = "vpc"
99
application = "clouddrove"
@@ -14,7 +14,7 @@ module "vpc" {
1414
}
1515

1616
module "subnets" {
17-
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.4"
17+
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
1818

1919
name = "subnets"
2020
application = "clouddrove"
@@ -26,10 +26,11 @@ module "subnets" {
2626
type = "public"
2727
igw_id = module.vpc.igw_id
2828
cidr_block = module.vpc.vpc_cidr_block
29+
ipv6_cidr_block = module.vpc.ipv6_cidr_block
2930
}
3031

3132
module "redis-sg" {
32-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.3"
33+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
3334

3435
name = "ssh"
3536
application = "clouddrove"

_example/redis/example.tf

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ provider "aws" {
33
}
44

55
module "vpc" {
6-
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.12.4"
6+
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=tags/0.13.0"
77

88
name = "vpc"
99
application = "clouddrove"
@@ -14,7 +14,7 @@ module "vpc" {
1414
}
1515

1616
module "subnets" {
17-
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git?ref=tags/0.12.4"
17+
source = "git::https://github.com/clouddrove/terraform-aws-subnet.git"
1818

1919
name = "subnets"
2020
application = "clouddrove"
@@ -26,10 +26,11 @@ module "subnets" {
2626
type = "public"
2727
igw_id = module.vpc.igw_id
2828
cidr_block = module.vpc.vpc_cidr_block
29+
ipv6_cidr_block = module.vpc.ipv6_cidr_block
2930
}
3031

3132
module "redis-sg" {
32-
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git?ref=tags/0.12.3"
33+
source = "git::https://github.com/clouddrove/terraform-aws-security-group.git"
3334

3435
name = "ssh"
3536
application = "clouddrove"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# tags for resources. You can use terraform-labels to implement a strict
99
# naming convention.
1010
module "labels" {
11-
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.12.0"
11+
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.13.0"
1212

1313
enabled = var.enable
1414
name = var.name

versions.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Terraform version
22
terraform {
3-
required_version = ">= 0.12"
3+
required_version = ">= 0.13"
4+
required_providers {
5+
aws = {
6+
source = "hashicorp/aws"
7+
}
8+
}
49
}

0 commit comments

Comments
 (0)