Skip to content

Commit

Permalink
Merge branch 'main' into lcucche/python-lambda-architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 21, 2023
2 parents 9520125 + 16a1a62 commit f74728c
Show file tree
Hide file tree
Showing 12 changed files with 571 additions and 38 deletions.

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 @@ -38,6 +38,24 @@
"MyTopic86869434": {
"Type": "AWS::SNS::Topic",
"Properties": {
"DeliveryStatusLogging": [
{
"FailureFeedbackRoleArn": {
"Fn::GetAtt": [
"FeedbackRoleCAF84E5C",
"Arn"
]
},
"Protocol": "http/s",
"SuccessFeedbackRoleArn": {
"Fn::GetAtt": [
"FeedbackRoleCAF84E5C",
"Arn"
]
},
"SuccessFeedbackSampleRate": "50"
}
],
"DisplayName": "fooDisplayName",
"KmsMasterKeyId": {
"Fn::GetAtt": [
Expand All @@ -47,6 +65,51 @@
},
"TopicName": "fooTopic"
}
},
"FeedbackRoleCAF84E5C": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Statement": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "sns.amazonaws.com"
}
}
],
"Version": "2012-10-17"
}
}
},
"Policy23B91518": {
"Type": "AWS::IAM::ManagedPolicy",
"Properties": {
"Description": "",
"Path": "/",
"PolicyDocument": {
"Statement": [
{
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:PutMetricFilter",
"logs:PutRetentionPolicy"
],
"Effect": "Allow",
"Resource": "*"
}
],
"Version": "2012-10-17"
},
"Roles": [
{
"Ref": "FeedbackRoleCAF84E5C"
}
]
}
}
},
"Parameters": {
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.

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

0 comments on commit f74728c

Please sign in to comment.