Skip to content

Commit cb58b69

Browse files
Fix missing tags (#89)
1 parent 6b646d4 commit cb58b69

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

main.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ resource "aws_elasticache_parameter_group" "default" {
9898
name = "max_item_size"
9999
value = var.max_item_size
100100
}
101+
102+
tags = module.this.tags
101103
}
102104

103105
resource "aws_elasticache_cluster" "default" {
@@ -147,6 +149,8 @@ resource "aws_cloudwatch_metric_alarm" "cache_cpu" {
147149

148150
alarm_actions = var.alarm_actions
149151
depends_on = [aws_elasticache_cluster.default]
152+
153+
tags = module.this.tags
150154
}
151155

152156
resource "aws_cloudwatch_metric_alarm" "cache_memory" {
@@ -168,6 +172,8 @@ resource "aws_cloudwatch_metric_alarm" "cache_memory" {
168172

169173
alarm_actions = var.alarm_actions
170174
depends_on = [aws_elasticache_cluster.default]
175+
176+
tags = module.this.tags
171177
}
172178

173179
module "dns" {

0 commit comments

Comments
 (0)