resource "aws_cloudwatch_metric_alarm" "example-BytesUsedForCache" { alarm_name = "[ElastiCache]example-BytesUsedForCache" comparison_operator = "GreaterThanOrEqualToThreshold" evaluation_periods = "1" metric_name = "BytesUsedForCache" namespace = "AWS/ElastiCache" period = "60" statistic = "Maximum" threshold = "29000000000" #29Gib alarm_actions = ["arn:aws:sns:ap-northeast-1::::example"] ok_acti
