Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fe4f965
feat(events): add support for Event Bus Logging Configuration
duranbe Aug 10, 2025
1af266f
Merge branch 'main' into add-log-config
duranbe Aug 13, 2025
744581a
Update integ test and snapshot
duranbe Aug 13, 2025
7ebf48e
fix integ test by running them correctly
duranbe Aug 13, 2025
26794fc
update Readme
duranbe Aug 13, 2025
5339de2
Merge branch 'main' into add-log-config
duranbe Aug 13, 2025
aaea6d6
fix: add imports to ts example code for Rosetta
duranbe Aug 13, 2025
273ae0a
fix rosetta build error
duranbe Aug 13, 2025
4fd41dd
Merge branch 'main' into add-log-config
duranbe Aug 13, 2025
22e31bf
fix readme and integ test
duranbe Aug 13, 2025
a501477
Merge branch 'main' into add-log-config
duranbe Aug 13, 2025
c951401
fix readme
duranbe Aug 13, 2025
6b3d3ac
Merge branch 'main' into add-log-config
duranbe Aug 13, 2025
535b82e
Merge branch 'main' into add-log-config
duranbe Aug 18, 2025
763527c
Merge branch 'main' into add-log-config
duranbe Aug 19, 2025
7cf356e
Merge branch 'main' into add-log-config
duranbe Aug 19, 2025
e2c589c
Merge branch 'main' into add-log-config
duranbe Aug 20, 2025
fb3bb5f
Merge branch 'main' into add-log-config
duranbe Aug 21, 2025
dd955df
Update README.md
duranbe Aug 21, 2025
38237a7
Merge branch 'main' into add-log-config
duranbe Aug 24, 2025
6a6c733
Merge branch 'main' into add-log-config
duranbe Aug 25, 2025
ba99f24
Merge branch 'main' into add-log-config
mergify[bot] Aug 26, 2025
e80b58d
Merge branch 'main' into add-log-config
duranbe Aug 27, 2025
72db3af
Merge branch 'main' into add-log-config
duranbe Aug 30, 2025
5bf9ae1
Merge branch 'main' into add-log-config
duranbe Sep 1, 2025
59916db
Merge branch 'main' into add-log-config
duranbe Sep 3, 2025
476b693
Merge branch 'main' into add-log-config
duranbe Sep 8, 2025
5534c70
Merge branch 'main' into add-log-config
duranbe Sep 15, 2025
02e1330
Merge branch 'main' into add-log-config
alvazjor Sep 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
},
"EventBusRole24766622": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
}
}
],
"Version": "2012-10-17"
},
"Description": "Role for accessing EventBus",
"RoleName": "EventBusAccessRole"
}
},
"BusEA82B648": {
"Type": "AWS::Events::EventBus",
"Properties": {
Expand All @@ -17,6 +36,10 @@
}
},
"Description": "myEventBus",
"LogConfig": {
"IncludeDetail": "FULL",
"Level": "ERROR"
},
"Name": "StackBusAA0A1E4B"
}
},
Expand All @@ -31,19 +54,9 @@
"Effect": "Allow",
"Principal": {
"AWS": {
"Fn::Join": [
"",
[
"arn:",
{
"Ref": "AWS::Partition"
},
":iam::",
{
"Ref": "AWS::AccountId"
},
":root"
]
"Fn::GetAtt": [
"EventBusRole24766622",
"Arn"
]
}
},
Expand All @@ -69,19 +82,9 @@
"Effect": "Allow",
"Principal": {
"AWS": {
"Fn::Join": [
"",
[
"arn:",
{
"Ref": "AWS::Partition"
},
":iam::",
{
"Ref": "AWS::AccountId"
},
":root"
]
"Fn::GetAtt": [
"EventBusRole24766622",
"Arn"
]
}
},
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading