Skip to content

Commit 8b1ca4a

Browse files
committed
Merge branch 'feat/valkey-elasticache' of github.com:clouddrove/terraform-aws-elasticache into feat/valkey-elasticache
2 parents 040d81a + 898125d commit 8b1ca4a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/tflint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ jobs:
88
tf-lint:
99
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master
1010
secrets:
11-
GITHUB: ${{ secrets.GITHUB }}
11+
GITHUB: ${{ secrets.GITHUB }}

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
repos:
22

33
- repo: https://github.com/gruntwork-io/pre-commit
4-
rev: v0.1.12 # Get the latest from: https://github.com/gruntwork-io/pre-commit/releases
4+
rev: v0.1.23 # Get the latest from: https://github.com/gruntwork-io/pre-commit/releases
55
hooks:
66
- id: terraform-fmt
77
- id: shellcheck
88
- id: tflint
99

10-
- repo: git://github.com/pre-commit/pre-commit-hooks
11-
rev: v4.0.1 # Use the ref you want to point at
10+
- repo: https://github.com/pre-commit/pre-commit-hooks
11+
rev: v5.0.0 # Use the ref you want to point at
1212
hooks:
1313
- id: end-of-file-fixer
1414
- id: trailing-whitespace

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
163163

164164

165165
[2.0.0]: https://github.com/clouddrove/terraform-aws-elasticache/compare/1.0.4...2.0.0
166-
[2.0.1]: https://github.com/clouddrove/terraform-aws-elasticache/compare/2.0.0...2.0.1
166+
[2.0.1]: https://github.com/clouddrove/terraform-aws-elasticache/compare/2.0.0...2.0.1

examples/memcached/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module "vpc" {
2626
####----------------------------------------------------------------------------------
2727
module "subnets" {
2828
source = "clouddrove/subnet/aws"
29-
version = "2.0.0"
29+
version = "2.0.1"
3030

3131
name = "${local.name}-subnets"
3232
environment = local.environment
@@ -83,6 +83,6 @@ module "memcached" {
8383
dns_record_name = "prod"
8484
route53_ttl = "300"
8585
route53_type = "CNAME"
86-
route53_zone_id = "SERFxxxx6XCsY9Lxxxxx" # Change Zone ID with Route53 Zone ID from looking at AWS Console
86+
route53_zone_id = "SERFxxxx6XCsY9Lxxxxx" # Change Zone ID with Route53 Zone ID from looking at AWS Console
8787
}
8888
}

examples/redis-cluster/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ output "redis_ssm_arn" {
2626
output "auth_token" {
2727
value = module.redis-cluster.auth_token
2828
sensitive = true
29-
}
29+
}

0 commit comments

Comments
 (0)