Skip to content
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

service_sdk_mappings possibly mapping "dynamodb": [..., "DynamoDB"] ? #28

Open
wittekm opened this issue Jun 26, 2023 · 1 comment
Open

Comments

@wittekm
Copy link

wittekm commented Jun 26, 2023

Hi there!

Perhaps I'm misunderstanding the usecase for service_sdk_mappings, but I think it's missing some entries.

For example, I would like to find all possible IAM Actions associated with a Cloudtrail action.
I don't know how to map a Cloudtrail action with
{ eventSource "dynamodb.amazonaws.com", eventName "BatchExecuteStatement"} (for example) (this may be a bad example since it's a data-level event)
to DynamoDB.BatchExecuteStatement due to capitalization.

Am I mis-using service_sdk_mappings or should it, in fact, have this in there?


as a workaround, for now I am trying an educated-guess by basically normalizing each entry in sdk_method_iam_mappings from "DynamoDB.BatchExecuteStatment" to "dynamodb.batchexecutestatement" and trying a best-guess "${eventSource without the amazonaws suffix}.${eventName}".lowercase() in addition to the mappings.

@iann0036
Copy link
Owner

Hi @wittekm,

This mapping is for the API methods (specifically, in the form the AWS JS SDK expects) to AWS IAM actions. It doesn't yet have any mapping towards CloudTrail.

You can map the AWS JS SDK methods to the raw API methods using the service JSONs included, but I don't believe there's any guarantee that the raw API methods and the CloudTrail events will line up.

You can also use the service name correlations at the bottom of the map to help you perform the appropriate service-to-service mappings.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants