Configure your AWS permissions for the Splunk App for AWS
In order for the Splunk App for AWS to access the data in your Amazon Web Services account, you must assign one or more AWS accounts to an IAM role with the permissions required by those services. This step requires administrator rights in the AWS Management Console. If you do not have administrator access, work with your AWS admin to set up the account(s) with the permissions required.
Note: The Splunk App for AWS does not support the AssumeRole
API action for data collection. Configure IAM accounts and permissions from the account that owns the resources that you want the add-on to access.
There are many ways to manage IAM policies.
- You can use the AWS Policy Generator tool to collect all permissions into one centrally managed policy that you can apply to the IAM group used by the account(s) that the Splunk App for AWS uses to connect to your AWS environment.
- You can create multiple different users, groups, and roles with the specific permissions required just for the services from which you plan to collect data.
- You can copy and paste the sample policies provided on this page and apply them to an IAM Group as custom inline policies. To further specify the resources to which the policy should grant access, replace the wildcards with the exact ARNs of the resources in your environment.
For more information about working with inline policies, access the AWS documentation: http://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_inline-using.html
Configure one policy containing permissions for all inputs
The following sample policy provides the necessary permissions for all nine inputs included in the Splunk App for AWS. See the remaining sections for separate policies that break out the permissions for each service.
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sqs:GetQueueAttributes", "sqs:ListQueues", "sqs:ReceiveMessage", "sqs:GetQueueUrl", "sqs:SendMessage", "sqs:DeleteMessage", "s3:ListBucket", "s3:GetObject", "s3:GetBucketLocation", "s3:ListAllMyBuckets", "config:DeliverConfigSnapshot", "config:DescribeConfigRules", "config:DescribeDeliveryChannels", "config:DescribeConfigRuleEvaluationStatus", "config:GetComplianceDetailsByConfigRule", "config:GetComplianceSummaryByConfigRule", "iam:GetUser", "autoscaling:Describe*", "cloudwatch:Describe*", "cloudwatch:Get*", "cloudwatch:List*", "sns:Get*", "sns:List*", "sns:Publish", "logs:DescribeLogGroups", "logs:DescribeLogStreams", "logs:GetLogEvents", "ec2:DescribeInstances", "ec2:DescribeReservedInstances", "ec2:DescribeSnapshots", "ec2:DescribeRegions", "ec2:DescribeKeyPairs", "ec2:DescribeNetworkAcls", "ec2:DescribeSecurityGroups", "ec2:DescribeSubnets", "ec2:DescribeVolumes", "ec2:DescribeVpcs", "ec2:DescribeImages", "ec2:DescribeAddresses", "lambda:ListFunctions", "rds:DescribeDBInstances", "cloudfront:Get*", "cloudfront:ListDistributions", "elasticloadbalancing:DescribeLoadBalancers", "elasticloadbalancing:DescribeInstanceHealth", "inspector:Describe*", "inspector:List*", "kinesis:Get*", "kinesis:Describe*", "kinesis:List*", "cloudtrail:DescribeTrails" ], "Resource": [ "*" ] } ] }
Configure AWS Config permissions
Required permission for the S3 bucket that collects your Config logs: GetObject, GetBucketLocation, ListBucket, ListAllMyBuckets
Required permission for the SQS subscribed to the SNS Topic that collects Config notifications: GetQueueAttributes, ListQueues, ReceiveMessage, GetQueueUrl, SendMessage, DeleteMessage
Required permission for the Config snapshots: DeliverConfigSnapshot, DescribeDeliveryChannels
Required permission for the SNS: ListSubscriptions
Required permission for the IAM user to get the Config snapshots: GetUser
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetObject", "s3:GetBucketLocation", "s3:ListAllMyBuckets" ], "Resource": [ "*" ] }, { "Effect": "Allow", "Action": [ "sqs:ListQueues", "sqs:ReceiveMessage", "sqs:GetQueueAttributes", "sqs:SendMessage", "sqs:GetQueueUrl", "sqs:DeleteMessage" ], "Resource": [ "*" ] }, { "Effect": "Allow", "Action": [ "config:DeliverConfigSnapshot", "config:DescribeDeliveryChannels" ], "Resource": [ "*" ] }, { "Effect": "Allow", "Action": [ "sns:ListSubscriptions" ], "Resource": [ "*" ] } ] }
For more information and sample policies, see:
- for SQS: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/UsingIAM.html
- for S3: http://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html
Configure AWS Config Rule permissions
Required permission for Config: DescribeConfigRules, DescribeConfigRuleEvaluationStatus, GetComplianceDetailsByConfigRule, GetComplianceSummaryByConfigRule
Required permission to pass the app's account validation: ec2:DescribeRegions OR s3:ListAllMyBuckets
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "config:DescribeConfigRules", "config:DescribeConfigRuleEvaluationStatus", "config:GetComplianceDetailsByConfigRule", "config:GetComplianceSummaryByConfigRule", "s3:ListAllMyBuckets" ], "Resource": "*" } ] }
For more information and sample policies, see http://docs.aws.amazon.com/config/latest/developerguide/example-policies.html
Configure CloudTrail permissions
Required permission for the S3 bucket that collects your CloudTrail logs: Get*, List*, Delete*
Required permission for the SQS subscribed to the S3 bucket that collects CloudTrail logs: GetQueueAttributes, ListQueues, ReceiveMessage, GetQueueUrl, DeleteMessage
Required permission for the CloudTrail service: DescribeTrails
Required permission for SNS: ListSubscriptions
In the Resource section of the policy, specify the ARNs of the S3 buckets and SQS queues from which you want to collect data.
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sqs:GetQueueAttributes", "sqs:ListQueues", "sqs:ReceiveMessage", "sqs:GetQueueUrl", "sqs:DeleteMessage", "sns:ListSubscriptions", "cloudtrail:DescribeTrails", "s3:Get*", "s3:List*", "s3:Delete*" ], "Resource": [ "*" ] } ] }
For more information and sample policies, see:
- for SQS: http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/UsingIAM.html
- for S3: http://docs.aws.amazon.com/AmazonS3/latest/dev/s3-access-control.html
Configure CloudWatch permissions
Required permissions for CloudWatch: Describe*, Get*, List*
Required permissions for autoscaling: Describe*
Required permissions for SNS queue: Get*, List*
Required permission to pass the app's account validation: ec2:DescribeRegions OR s3:ListAllMyBuckets
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Action": [ "autoscaling:Describe*", "cloudwatch:Describe*", "cloudwatch:Get*", "cloudwatch:List*", "sns:Get*", "sns:List*", "ec2:DescribeRegions" ], "Effect": "Allow", "Resource": "*" } ] }
For more information and sample policies, see: http://docs.aws.amazon.com/AmazonCloudWatch/latest/DeveloperGuide/UsingIAM.html
Configure CloudWatch Logs permissions
Required permissions for logs: DescribeLogGroups, DescribeLogStreams, GetLogEvents
Required permission to pass the app's account validation: s3:ListAllMyBuckets OR ec2:DescribeRegions
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Action": [ "logs:DescribeLogGroups", "logs:DescribeLogStreams", "logs:GetLogEvents", "s3:ListAllMyBuckets" ], "Effect": "Allow", "Resource": "*" } ] }
You must also ensure that your role has a trust relationship that allows the flow logs service to assume the role. While viewing the IAM role, choose Edit Trust Relationship and replace the policy with this one:
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "Service": "vpc-flow-logs.amazonaws.com" }, "Action": "sts:AssumeRole" } ] }
For more information, see http://docs.aws.amazon.com/IAM/latest/UserGuide/list_logs.html.
Configure Amazon Inspector permissions
Required permission for Amazon Inspector: Describe*, List*
Required permission to pass the app's account validation: ec2:DescribeRegions OR s3:ListAllMyBuckets
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "inspector:Describe*", "inspector:List*", "s3:ListAllMyBuckets" ], "Resource": "*" } ] }
For more information, see http://docs.aws.amazon.com/IAM/latest/UserGuide/list_inspector.html
Configure Metadata permissions
Required permissions for EC2 resources: DescribeInstances, DescribeReservedInstances, DescribeSnapshots, DescribeRegions, DescribeKeyPairs, DescribeNetworkAcls, DescribeSecurityGroups, DescribeSubnets, DescribeVolumes, DescribeVpcs
Required permissions for RDS: DescribeDBInstances
Required permissions for CloudFront, if you are in a region that supports CloudFront: ListDistributions
Required permissions for ELB: DescribeLoadBalancers, DescribeInstanceHealth
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "ec2:DescribeInstances", "ec2:DescribeReservedInstances", "ec2:DescribeSnapshots", "ec2:DescribeRegions", "ec2:DescribeKeyPairs", "ec2:DescribeNetworkAcls", "ec2:DescribeSecurityGroups", "ec2:DescribeSubnets", "ec2:DescribeVolumes", "ec2:DescribeVpcs", "rds:DescribeDBInstances", "cloudfront:ListDistributions", "elasticloadbalancing:DescribeLoadBalancers", "elasticloadbalancing:DescribeInstanceHealth" ], "Resource": [ "*" ] } ] }
Configure S3 permissions
Required permissions for S3 buckets and objects: ListBucket, GetObject, ListAllMyBuckets
In the Resource section of the policy, specify the ARNs of the S3 buckets from which you want to collect S3 access logs, CloudFront access logs, ELB access logs, or generic S3 log data.
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetObject", "s3:ListAllMyBuckets" ], "Resource": "*" } ] }
For more information and sample policies, see http://docs.aws.amazon.com/AmazonS3/latest/dev/using-iam-policies.html.
Configure Billing permissions
Required permissions for for the S3 bucket that collects your billing reports: Get*, List*
In the Resource section of the policy, specify the ARNs of the S3 buckets that contain billing reports for your accounts.
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "s3:Get*", "s3:List*" ], "Resource": "*" } ] }
For more information and sample policies, see http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-permissions-ref.html.
Configure Kinesis permissions
Required permissions for Kinesis Streams: ListStreams, Get*, DescribeStream
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "kinesis:ListStreams", "kinesis: Get*", "kinesis:DescribeStream" ], "Resource": [ "*" ] } ] }
For more information and sample policies, see http://docs.aws.amazon.com/IAM/latest/UserGuide/list_kinesis.html.
Configure Description permissions
Required permissions for EC2 resources: DescribeInstances, DescribeReservedInstances, DescribeSnapshots, DescribeRegions, DescribeKeyPairs, DescribeNetworkAcls, DescribeSecurityGroups, DescribeSubnets, DescribeVolumes, DescribeVpcs, DescribeImages, DescribeAddresses
Required permissions for Lambda: List
Required permissions for RDS: DescribeDBInstances
Required permissions for CloudFront, if you are in a region that supports CloudFront: ListDistributions
Required permissions for ELB: DescribeLoadBalancers
Sample inline policy:
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "ec2:DescribeInstances", "ec2:DescribeReservedInstances", "ec2:DescribeSnapshots", "ec2:DescribeRegions", "ec2:DescribeKeyPairs", "ec2:DescribeNetworkAcls", "ec2:DescribeSecurityGroups", "ec2:DescribeSubnets", "ec2:DescribeVolumes", "ec2:DescribeVpcs", "ec2:DescribeImages", "ec2:DescribeAddresses", "lambda:ListFunctions", "rds:DescribeDBInstances", "cloudfront:ListDistributions", "elasticloadbalancing:DescribeLoadBalancers", "elasticloadbalancing:DescribeInstanceHealth" ], "Resource": [ "*" ] } ] }
Configure your AWS services for the Splunk App for AWS | Install the Splunk App for AWS on Splunk Cloud |
This documentation applies to the following versions of Splunk® App for AWS (Legacy): 5.0.0, 5.0.1, 5.0.2
Feedback submitted, thanks!