1 Answer
- Newest
- Most votes
- Most comments
1
EventBridge does not have direct integration with VPC resources. Your options are:
- Invoke a Lambda function which is attached to the VPC that will make the call to the service.
- Place the message into an SQS queue and let the service poll the queue for messages (this required to rearchitect the service itself).
There might be other workarounds not listed above.
Relevant content
- AWS OFFICIALUpdated a month ago
- How do I use an interface VPC endpoint to access an API Gateway private REST API in another account?AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
Thanks for the response. Is it possible to integrate EventBridge with VPCLink? I saw this doc from AWS China that says using PrivateLink it might be possible https://docs.amazonaws.cn/en_us/eventbridge/latest/userguide/eb-related-service-vpc.html. Do you have any idea about this?
The document you are pointing to describes how you can publish events to EventBridge from within a VPC. Not the other way around, which is not supported.