SNS Topic/Subscription created through Terraform not showing up

0

I'm trying to create SNS topics and subscriptions through Terraform and it appears to be successful when doing so. However, I can never see them in the GUI for some reason. I know that email subscriptions aren't fully supported through Terraform so I thought that may be the reason it's not showing up even though I receive the confirmation email, but I then tried another route using a CloudFormation template by following the steps in this link:

http://aws-cloud.guru/terraform-sns-topic-email-list/

Same issue though. Terraform says it created the SNS topic/subscription and I receive a confirmation email. But when I go under SNS in the GUI as my root account, I don't see any SNS topics. Here's the code for the first test case I did:

resource "aws_sns_topic" "sysadmin_alerts" {
  name            = "sysadmin-alerts-topic"
}

resource "aws_sns_topic_subscription" "sysadmin_alerts_email_target" {
  topic_arn = aws_sns_topic.sysadmin_alerts.arn
  protocol  = "email"
  endpoint  = "fake@email.com"
}

Is there something I'm missing in the process to create these via Terraform?

1 個回答
1
已接受的答案

Hi Gary,

Have you ensured that the region you are looking at in the console, and the region that terraform is deploying to match? If so, providing the output if your terraform apply command may be useful.

Oisian
已回答 2 年前
profile picture
專家
已審閱 1 個月前
  • Well that was easy! I knew it had to be something obvious I was missing. ugh

    Thanks!

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南