From b33ff70c1ce79ee143a80030464e5cb736c27e27 Mon Sep 17 00:00:00 2001 From: Lorenzo Aiello Date: Fri, 16 Feb 2024 18:12:54 -0800 Subject: [PATCH] fix: example docs --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c13235..f7cf8b6 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ resource "aws_sns_topic" "default" { module "aws-rds-alarms" { source = "lorenzoaiello/rds-alarms/aws" version = "x.y.z" - db_instance_id = aws_db_instance.default.id + db_instance_id = aws_db_instance.default.identifier db_instance_class = "db.t2.micro" actions_alarm = [aws_sns_topic.default.arn] actions_ok = [aws_sns_topic.default.arn] @@ -92,7 +92,7 @@ module "notify_slack" { module "aws-rds-alarms" { source = "lorenzoaiello/rds-alarms/aws" version = "x.y.z" - db_instance_id = aws_db_instance.default.id + db_instance_id = aws_db_instance.default.identifier db_instance_class = "db.t2.micro" actions_alarm = [module.sns_to_slack.this_slack_topic_arn] actions_ok = [module.sns_to_slack.this_slack_topic_arn]