You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tf-modules/monitoring/health-notifications
lalanza808 4cb017c825 adding health-notifications module 4 years ago
..
README.md adding health-notifications module 4 years ago
main.tf adding health-notifications module 4 years ago
variables.tf adding health-notifications module 4 years ago

README.md

health-notifications

This module sets up Cloudwatch Event rules which notify a given SNS topic to inform administrators of any health/operational events .

https://aws.amazon.com/premiumsupport/technology/personal-health-dashboard/

Usage

module "sns-email-topic" {
  source = "github.com/lalanza808/tf-modules.git/monitoring/sns-email-topic"
}

module "aws-health" {
  source = "github.com/lalanza808/tf-modules.git/monitoring/health-notifications"
  sns_topic_arn = module.sns-email-topic.topic_arn
}

Inputs

You must provide one input, which is the SNS Topic ARN you wish to publish messages to.

  • sns_topic_arn

You can provide these optional inputs:

  • prefix
  • tags

See all inputs here: variables.tf

Outputs

None