EventBridge Rule Testing doesn't work

0

Hello,

I'm trying to set up the eventbridge for custom events that my application will be raising. So I've been reading the documentation, got my eventbus created, added the API Destination and want to create a rule that should only forward events with a specific field to this destination. So according to the documentation, this is what an event would look like:

{
  "account": "123456789012",
  "detail-type": "Deployment History Notification",
  "source": "company.my-app",
  "detail": {
    "event": "deployment",
    "projectName": "app-that-got-deployed",
    "deploymentUrl": "https://myapp.com/api/deployments/:id.json",
    "version": "Tool 13.12.0"
  }
}

I've assumed this based on the documentation here: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-events.html So now I want to match anything from my account, and that's a deployment, so I set up the following pattern in the rule:

{
  "account": ["123456789012"],
  "detail": {
    "event": ["deployment"]
  }
}

But the rules page keeps telling me that the example doesn't match the pattern. Why not? What did I miss? The documentation I am basing myself on is this one: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html

profile picture
Olivar
posta 2 anni fa1765 visualizzazioni
1 Risposta
2
Risposta accettata

The reason is that your sample event is not complete. You need to add to it the "id", "region" and "time" fields. It is annoying, but that is the way it works right now.

profile pictureAWS
ESPERTO
Uri
con risposta 2 anni fa
profile picture
ESPERTO
verificato un mese fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande