Skip to content

Instantly share code, notes, and snippets.

@dcortesnet
Last active March 29, 2023 15:16
Show Gist options
  • Save dcortesnet/3adb80302b6a613a4257200bcd326baa to your computer and use it in GitHub Desktop.
Save dcortesnet/3adb80302b6a613a4257200bcd326baa to your computer and use it in GitHub Desktop.
AWS policies - create logs stream in cloud watch
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Effect": "Allow",
"Resource": "arn:aws:logs:*:*:*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment