This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
policies.tf
84 lines (70 loc) · 1.66 KB
/
policies.tf
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// IAM policy for the email receipt lambda job
data "aws_iam_policy_document" "email-receipt-lambda" {
statement {
actions = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
]
resources = [
"arn:aws:logs:*:*:*",
]
}
statement {
actions = [
"ses:SendEmail",
"ses:SendRawEmail",
"ses:SendTemplatedEmail",
]
resources = ["*"]
}
statement {
actions = [
"dynamodb:PutItem",
]
resources = ["${aws_dynamodb_table.email-subscriptions.arn}"]
}
statement {
actions = ["dynamodb:Query"]
resources = ["${aws_dynamodb_table.email-subscriptions.arn}/index/EmailIndex"]
}
statement {
actions = [
"dynamodb:GetItem",
"dynamodb:PutItem",
"dynamodb:UpdateItem",
]
resources = ["${aws_dynamodb_table.email-counters.arn}"]
}
}
resource "aws_iam_policy" "email-receipt-lambda" {
name = "email-receipt-lambda"
path = "/"
policy = "${data.aws_iam_policy_document.email-receipt-lambda.json}"
}
// IAM policy for the unsubscribe lambda
data "aws_iam_policy_document" "unsubscribe-lambda" {
statement {
actions = [
"dynamodb:PutItem",
"dynamodb:UpdateItem",
"dynamodb:DeleteItem",
]
resources = ["${aws_dynamodb_table.email-subscriptions.arn}"]
}
statement {
actions = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
]
resources = [
"arn:aws:logs:*:*:*",
]
}
}
resource "aws_iam_policy" "unsubscribe-lambda" {
name = "unsubscribe-lambda"
path = "/"
policy = "${data.aws_iam_policy_document.unsubscribe-lambda.json}"
}