Skip to content

Commit 63473d9

Browse files
committed
updated resource names
1 parent 38fb6f4 commit 63473d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

elasticache.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ resource "aws_secretsmanager_secret_version" "auth" {
2828
resource "aws_elasticache_replication_group" "app4" {
2929
automatic_failover_enabled = true
3030
subnet_group_name = aws_elasticache_subnet_group.elasticache_subnet.name
31-
replication_group_id = "app4-redis-cluster"
31+
replication_group_id = "app-4-redis-cluster"
3232
description = "ElastiCache cluster for app4"
3333
node_type = "cache.t2.small"
3434
parameter_group_name = "default.redis7.cluster.on"

security_group.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "aws_default_security_group" "default" {
22
vpc_id = aws_vpc.this.id
33
}
44
resource "aws_security_group" "elasticache" {
5-
name = "app4-elasticache"
5+
name = "app-4-elasticache"
66
description = "Allow inbound to and outbound access from the Amazon ElastiCache cluster."
77
ingress {
88
from_port = 6379

0 commit comments

Comments
 (0)