-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add EventBridge infrastructure #107
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 11:25
0c8eb19
to
df99483
Compare
gregtyler
had a problem deploying
to
107vega2333
February 13, 2024 11:27 — with
GitHub Actions
Failure
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 11:49
df99483
to
46e9b3c
Compare
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 11:52 — with
GitHub Actions
Inactive
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 12:09 — with
GitHub Actions
Inactive
Includes: - Event bus in LPA Store account - Cross-account rule to send all locally-sourced events to the Sirius event bus - Dead letter-queue to catch events that couldn't be sent Fixes VEGA-2333 #minor
So that the GitHub Action fails #patch
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 12:18
46e9b3c
to
b2f8b18
Compare
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 12:25 — with
GitHub Actions
Inactive
So that they can send messages to EventBridge #patch
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 14:39
b2f8b18
to
f898838
Compare
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 14:41 — with
GitHub Actions
Inactive
Existing issue in production, spotted now that the integration test fails the action. #minor
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 14:56
f898838
to
35692eb
Compare
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 14:59 — with
GitHub Actions
Inactive
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 15:04 — with
GitHub Actions
Inactive
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 16:33 — with
GitHub Actions
Inactive
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 16:42
35692eb
to
5b6eefc
Compare
gregtyler
temporarily deployed
to
107vega2333
February 13, 2024 16:48 — with
GitHub Actions
Inactive
Tested in a popup environment with the code: l.eb.PutEvents(&eventbridge.PutEventsInput{
Entries: []*eventbridge.PutEventsRequestEntry{
{
EventBusName: aws.String(os.Getenv("EVENT_BUS_NAME")),
DetailType: aws.String("test"),
Source: aws.String("opg.poas.lpastore"),
Detail: aws.String("{\"ok\": true}"),
},
},
}) |
gregtyler
force-pushed
the
VEGA-2333-add-eventbridge
branch
from
February 13, 2024 17:00
5b6eefc
to
29ffa6a
Compare
gregtyler
had a problem deploying
to
107vega2333
February 13, 2024 17:02 — with
GitHub Actions
Failure
sixdaysandy
approved these changes
Feb 14, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Includes:
Fixes VEGA-2333 #minor