EventBridge global endpoint has event replication enabled
eventbridge_global_endpoint_event_replication_enabled
EventBridge global endpoints are configured with event replication ENABLED (not DISABLED) so custom events are replicated to both the primary and secondary Regions.
Risk
No event replication degrades availability and increases RPO during Regional outages.
- Events can be lost or delayed if the primary Region fails
- Automatic recovery to the primary may not occur, prolonging failover
- Cross-Region inconsistency can affect data integrity
prowler aws --checks eventbridge_global_endpoint_event_replication_enabled
Recommendation
Turn on event replication for global endpoints to ensure Regional resilience. Keep event buses, rules, and targets aligned across Regions. Use a dedicated IAM role with least privilege for replication. Design consumers for idempotency with unique IDs. Regularly test failover and monitor health as part of defense in depth.
Remediation
aws events update-endpoint --name <endpoint-name> --replication-config State=ENABLED --role-arn <role-arn>
- In the AWS Console, open Amazon EventBridge and go to Global endpoints
- Select the endpoint and choose Edit
- Under Event replication, check Event replication enabled
- For Execution role, select an existing role or create a new one
- Save changes
Source Code
Resource Type
AwsEventsEndpoint
References
- https://docs.aws.amazon.com/securityhub/latest/userguide/eventbridge-controls.html#eventbridge-4
- https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-global-endpoints.html
- https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_Endpoint.html
- https://docs.aws.amazon.com/config/latest/developerguide/global-endpoint-event-replication-enabled.html
- https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-ge-create-endpoint.html
- https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-ge-best-practices.html
- https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_CreateEndpoint.html
- https://aws.amazon.com/blogs/compute/introducing-global-endpoints-for-amazon-eventbridge/