lambda excute role template
2022. 11. 15. 09:40ㆍAWS/AWS Lambda
728x90
SMALL
- 개요
Lambda를 실행하기 위한 IAM role기본 template
- IAM Role & STS
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "logs:CreateLogGroup",
"Resource": "aws:logs:<region>:<account-number>:*"
},
{
"Effect": "Allow",
"Action": [
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": [
"arn:aws:logs:<region>:<account-number>:log-group:/aws/lambda/function_name:*"
]
}
]
}
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
728x90
LIST
'AWS > AWS Lambda' 카테고리의 다른 글
Lambda 에서 X-Ray 활성화 하는 방법 (0) | 2024.04.01 |
---|---|
AWS Lambda runtime change script (0) | 2023.11.06 |
Lambda edge functions list 확인 하는 방법 (0) | 2023.10.27 |
lambda 413 error (0) | 2023.01.27 |
AWS Lambda functions description (0) | 2022.07.26 |