Files
integreat/terraform/reminders.tf
2018-04-07 10:08:53 -07:00

11 lines
327 B
HCL

resource "aws_sns_topic" "reminder_topic" {
name = "reminders"
}
resource "aws_sns_topic_subscription" "send_reminders_to_service" {
topic_arn = "${aws_sns_topic.reminder_topic.arn}"
protocol = "https"
endpoint = "https://integreat.aws.brycecovertoperations.com/api/reminders/send"
endpoint_auto_confirms = true
}