aligent / magento2-eventbridge-notifier
An Amazon EventBridge notifier backed by the aligent/async-events module.
Installs: 2 036
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 12
Forks: 1
Open Issues: 1
Type:magento2-module
pkg:composer/aligent/magento2-eventbridge-notifier
Requires
- php: >=7.0
- aws/aws-sdk-php: ^3.110
- magento/framework: *
Requires (Dev)
README
This repository adds an aligent/async-events compatible notifier for submitting events to Amazon EventBridge.
Getting Started
Configure AWS Credentials
An IAM role with the events:PutEvents action is required so that the notifier can relay events into Amazon EventBridge.
Under Stores -> Services -> Amazon EventBridge set the Access Key ID and the Secret Access Key and the Region. You
can configure the source of the event and the event bus if necessary.
Create Subscription
curl --location --request POST 'https://m2.dev.aligent.consulting:44356/rest/V1/async_event' \ --header 'Authorization: Bearer TOKEN' \ --header 'Content-Type: application/json' \ --data-raw '{ "asyncEvent": { "event_name": "example.event", "recipient_url": "Amazon Event Bridge ARN", "verification_token": "supersecret", "metadata": "event_bridge" } }'
