-
Notifications
You must be signed in to change notification settings - Fork 1
/
lambda.cloudformation.yaml
50 lines (48 loc) · 1.44 KB
/
lambda.cloudformation.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
AWSTemplateFormatVersion: "2010-09-09"
Resources:
ECRRepo:
Type: AWS::ECR::Repository
Properties:
RepositoryName: tacostats
RootRole:
Type: AWS::IAM::Role
Properties:
RoleName: tacostats
ManagedPolicyArns: [arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole]
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Path: /
RolePolicies:
Type: AWS::IAM::Policy
Properties:
PolicyName: tacostats
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- secretsmanager:GetSecretValue
Resource: 'arn:aws:secretsmanager:us-east-2:390721581096:secret:tacostats-*'
- Effect: Allow
Action:
- s3:ListBucket
Resource: 'arn:aws:s3:::tacostats-stats'
- Effect: Allow
Action:
- s3:PutObject
- s3:GetObject
- s3:DeleteObject
Resource: 'arn:aws:s3:::tacostats-stats/*'
- Effect: Allow
Action:
- sqs:*
Resource: 'arn:aws:sqs:us-east-2:390721581096:tacostats-pinger'
Roles:
- Ref: RootRole