ZLZin Lin Htetinfrandisharing.com·Mar 1 · 2 min readDifference between task role and execution role in AWS ECSToday, I want to explain the difference between a task role and an execution role in AWS ECS. Yesterday, I set up AWS ECS for a UAT environment and defined both roles. Let me clarify what a task role 00
TKTaegu Kanginktg0210.hashnode.dev·Nov 15, 2022 · 1 min readlambda execution role templateoutline Basic template for IAM role to execute lambda function IAM Role & STS { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "logs:CreateLogGroup", "Resource": "aws:lo...00
JZJones Zachariah Noel Ninblog.theserverlessterminal.com·Jul 31, 2022 · 3 min readAllow only what your Lambda code needsWhile executing AWS Lambda functions would need IAM permissions to access either for READ or WRITE actions. For this you need to map an IAM Role with an associated IAM Policy. As a best practice, we would follow least privilege permission but often t...00