gpt4 book ai didi

terraform - 在 VPC 内通过 HTTP 使用 Terraform 订阅 SNS 主题

转载 作者:行者123 更新时间:2023-12-05 06:11:15 32 4
gpt4 key购买 nike

我有一个位于 VPC 内的 EB 实例。我不希望这个实例可以从外部访问,它还需要访问同一 VPC 内的 RDS 实例。

我想创建从 SNS 到这个 EB 实例的订阅。

这是我想出的 Terraform:

resource "aws_sns_topic_subscription" "my_sub" {
topic_arn = aws_sns_topic.my_topic.arn
protocol = "http"
endpoint = "http://${aws_elastic_beanstalk_environment.my_eb_app.endpoint_url}/api/sns"
endpoint_auto_confirms = true
}

但是,这失败了,因为它是一个内部端点:

Error: Error creating SNS topic: AuthorizationError: Not authorized to subscribe internal endpoints
status code: 403, request id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx

我应该如何解决这个问题?

最佳答案

显然没有办法将端点公开。人们建议改为订阅 SQS 队列并对其进行轮询。

关于terraform - 在 VPC 内通过 HTTP 使用 Terraform 订阅 SNS 主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64067312/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com