-
Notifications
You must be signed in to change notification settings - Fork 228
CSOAR-3365: AWS IAM Role ARN based Authentication #5630
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b3caf54
CSOAR-3365: Updated S3 doc
mahendrak-sumo 92d180f
CSOAR-3365: updated the AWS inegrations
mahendrak-sumo 43362f3
CSOAR-3365: add iam-role.md file
mahendrak-sumo d2cddd9
CSOAR-3365: changed changelog
mahendrak-sumo 4e160c1
CSOAR-3365: added IAM info
mahendrak-sumo b39cc4b
CSOAR-3365: udpated the doc link
mahendrak-sumo 8fe9534
CSOAR-3365: updated info
mahendrak-sumo cebdecc
CSOAR-3365: added permissions
mahendrak-sumo fd19a92
CSOAR-3365: added permissions details for sqs and cloudtrail
mahendrak-sumo afc7bb2
Merge branch 'main' into CSOAR-3365
mahendrak-sumo f7d2e9f
Merge branch 'main' into CSOAR-3365
mahendrak-sumo 11c5692
CSOAR-3365: implemeneted review comments
mahendrak-sumo cf57932
CSOAR-3365: updated the iam-conifguration.md file
mahendrak-sumo 9213270
CSOAR-3365: updated dates
mahendrak-sumo 11e6ac6
CSOAR-3365: minor change
mahendrak-sumo 4d5dfea
Updates from review
jpipkin1 4af3ffd
Merge branch 'main' into CSOAR-3365
jpipkin1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| **Access Key ID**. Enter an AWS [access key ID](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html) to provide authentication. (Although AWS recommends using IAM roles with temporary security credentials instead of access keys, our AWS integrations currently support only access keys due to the need for dynamically managed credentials.) | ||
| **Access Key ID**. Enter an AWS [access key ID](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html) to provide authentication. (Although AWS recommends using IAM roles with temporary security credentials instead of access keys) | ||
mahendrak-sumo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| ### AWS IAM Role-Based Access Guide | ||
|
|
||
| To enable AWS IAM Role-based authentication without sharing their Access/Secret keys, follow the steps below. | ||
mahendrak-sumo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| --- | ||
|
|
||
| #### Customer-Side Configuration | ||
mahendrak-sumo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| 1. **Create an IAM Role** in AWS account. | ||
| 2. **Attach Required Policies** to the role depending on the AWS services they want to allow access to (e.g., `AmazonEC2ReadOnlyAccess`, `AWSWAFFullAccess`, etc.). | ||
mahendrak-sumo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| 3. **Update the Trust Policy** to allow SUMO's AWS account to assume this role. | ||
jpipkin1 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Example Trust Policy: | ||
| ```json | ||
| { | ||
| "Version": "2012-10-17", | ||
| "Statement": [ | ||
| { | ||
| "Effect": "Allow", | ||
| "Principal": { | ||
| "AWS": "arn:aws:iam::<sumo-account-id>:root" | ||
| }, | ||
| "Action": "sts:AssumeRole" | ||
| } | ||
| ] | ||
| } | ||
| ``` | ||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| **IAM Role**. Enter an AWS IAM Role ARN to provide authentication. | ||
mahendrak-sumo marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.