Skip to content

Commit

Permalink
Merge pull request #22 from lorenzoaiello/fix/docs
Browse files Browse the repository at this point in the history
fix: example docs
  • Loading branch information
lorenzoaiello authored Feb 17, 2024
2 parents 54e9f42 + b33ff70 commit 7e862d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit 7e862d2

Please sign in to comment.