Skip to content

Commit

Permalink
Fixes AWS Role copy to be clearer
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-afedorov committed Jul 25, 2019
1 parent 6f739f0 commit 141e993
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/connectors/aws_cloudtrail.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""AWS CloudTrail
Collects AWS logs from an S3 bucket using AssumeRole Grants
Collects AWS logs from an S3 bucket using AssumeRole
"""

from json import dumps
Expand All @@ -21,9 +21,9 @@
{
'type': 'str',
'name': 'aws_role',
'title': "AWS Role",
'prompt': "The full ARN of an IAM role with permissions to read from the bucket",
'placeholder': "arn:aws:iam::012345678987:role/s3-read-role",
'title': "CloudTrail Bucket Reader Role",
'prompt': "Role to be assumed for access to CloudTrail files in S3",
'placeholder': "arn:aws:iam::012345678987:role/my-cloudtrail-read-role",
'required': True,
},
{
Expand Down
6 changes: 3 additions & 3 deletions src/connectors/aws_config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""AWS Config
Collects Config logs from S3 using AssumeRole Grants
Collects Config logs from S3 using AssumeRole
"""
from json import dumps
from time import sleep
Expand Down Expand Up @@ -28,8 +28,8 @@
{
'type': 'str',
'name': 'aws_role',
'title': 'AWS Role',
'prompt': "ARN of Role we'll grant access to bucket",
'title': 'Config Bucket Reader Role',
'prompt': "Role to be assumed for access to Config files in S3",
'placeholder': 'arn:aws:iam::012345678987:role/my-config-reader-role',
'required': True,
}
Expand Down

0 comments on commit 141e993

Please sign in to comment.