11 lines
327 B
HCL
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
|
|
}
|