Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions modules/aws/vendor-access/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ This module creates the following resources within your AWS account:

- `role/StreamNativeCloudBootstrapRole` & `policy/StreamNativeCloudBootstrapPolicy`: These IAM resources are used for provisioning, deprovisioning, and regular or emergency maintenance. This role and policy have the following characteristics:
- Have the ability to create, delete, manage, and read (within the limits of the permission boundary) EC2, EKS, IAM, DynamoDB, Route53, and KMS resources
- Have **read-only** access to CloudTrail management events (`cloudtrail:LookupEvents`, `DescribeTrails`, `GetTrailStatus`, `GetEventSelectors`, `ListTrails`) so StreamNative can diagnose out-of-band changes to StreamNative-managed IAM resources during incidents. These are read-only and cannot start, stop, delete, or modify trails.
- Cannot create or modify IAM policies (but are allowed to work with IAM policies specified by this module)
- Can only work with resources that have specific tags associated or certain expected patterns in the resource's friendly name.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"Action": [
"acm:*",
"autoscaling:*",
"cloudtrail:DescribeTrails",
"cloudtrail:GetEventSelectors",
"cloudtrail:GetTrailStatus",
"cloudtrail:ListTrails",
"cloudtrail:LookupEvents",
"cloudwatch:*",
"cognito-idp:*",
"dynamodb:*",
Expand Down
Loading