Skip to content

Commit 3e79c8f

Browse files
committed
upgrade to 0.14
1 parent 3acda5b commit 3e79c8f

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,3 @@
55
.idea
66
*.iml
77
*.terraform.lock.hcl
8-
9-
**/.build-harness
10-
**/build-harness
11-
go.sum

README.yaml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,10 @@ usage : |-
3838
### Redis
3939
```hcl
4040
module "redis" {
41-
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.14.0"
41+
source = "clouddrove/elasticache/aws
42+
version = "0.14.0"
4243
name = "redis"
43-
repository = "clouddrove"
44+
repository = "https://registry.terraform.io/modules/clouddrove/elasticache/aws/0.14.0"
4445
environment = "test"
4546
label_order = ["environment", "application", "name"]
4647
engine = "redis"
@@ -59,9 +60,10 @@ usage : |-
5960
### Redis Cluster
6061
```hcl
6162
module "redis-cluster" {
62-
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.14.0"
63-
name = "cluster"
64-
application = "clouddrove"
63+
source = "clouddrove/elasticache/aws
64+
version = "0.14.0"
65+
name = "cluster"
66+
repository = "https://registry.terraform.io/modules/clouddrove/elasticache/aws/0.14.0"
6567
environment = "test"
6668
label_order = ["environment", "application", "name"]
6769
cluster_replication_enabled = true
@@ -72,7 +74,7 @@ usage : |-
7274
node_type = "cache.t2.micro"
7375
subnet_ids = module.subnets.public_subnet_id
7476
security_group_ids = [module.redis-sg.security_group_ids]
75-
availability_zones = ["eu-west-1a","eu-west-1b" ]
77+
availability_zones = ["eu-west-1a","eu-west-1b" ]
7678
auto_minor_version_upgrade = true
7779
replicas_per_node_group = 2
7880
num_node_groups = 1
@@ -82,9 +84,10 @@ usage : |-
8284
### Memcache
8385
```hcl
8486
module "memcached" {
85-
source = "git::https://github.com/clouddrove/terraform-aws-elasticache?ref=tags/0.14.0"
87+
source = "clouddrove/elasticache/aws
88+
version = "0.14.0"
8689
name = "memcached"
87-
application = "clouddrove"
90+
repository = "https://registry.terraform.io/modules/clouddrove/elasticache/aws/0.14.0"
8891
environment = "test"
8992
label_order = ["environment", "application", "name"]
9093
cluster_enabled = true

0 commit comments

Comments
 (0)