Skip to content

Instantly share code, notes, and snippets.

@takayokoy
Created October 12, 2018 05:14
Show Gist options
  • Save takayokoy/f885c90ada855feaae6c48aca851e519 to your computer and use it in GitHub Desktop.
Save takayokoy/f885c90ada855feaae6c48aca851e519 to your computer and use it in GitHub Desktop.
[AWS]awslogsでCloudWatchにログ送信するために必要なロール
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogStreams"
],
"Resource": [
"arn:aws:logs:*:*:*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment