This repository has been archived by the owner on Jun 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 126
/
iam.tf
159 lines (118 loc) · 3.97 KB
/
iam.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
# Create the role.
data "aws_iam_policy_document" "assume_role" {
count = var.enabled ? 1 : 0
statement {
effect = "Allow"
actions = ["sts:AssumeRole"]
principals {
type = "Service"
identifiers = concat(slice(["lambda.amazonaws.com", "edgelambda.amazonaws.com"], 0, var.lambda_at_edge ? 2 : 1), var.trusted_entities)
}
}
}
resource "aws_iam_role" "lambda" {
count = var.enabled ? 1 : 0
name = var.function_name
assume_role_policy = data.aws_iam_policy_document.assume_role[0].json
tags = var.tags
}
# Attach a policy for logs.
locals {
lambda_log_group_arn = "arn:${data.aws_partition.current.partition}:logs:*:${data.aws_caller_identity.current.account_id}:log-group:/aws/lambda/${var.function_name}"
lambda_edge_log_group_arn = "arn:${data.aws_partition.current.partition}:logs:*:${data.aws_caller_identity.current.account_id}:log-group:/aws/lambda/us-east-1.${var.function_name}"
log_group_arns = slice([local.lambda_log_group_arn, local.lambda_edge_log_group_arn], 0, var.lambda_at_edge ? 2 : 1)
}
data "aws_iam_policy_document" "logs" {
count = var.enabled && var.cloudwatch_logs ? 1 : 0
statement {
effect = "Allow"
actions = [
"logs:CreateLogGroup",
]
resources = [
"*",
]
}
statement {
effect = "Allow"
actions = [
"logs:CreateLogStream",
"logs:PutLogEvents",
]
resources = concat(formatlist("%v:*", local.log_group_arns), formatlist("%v:*:*", local.log_group_arns))
}
}
resource "aws_iam_policy" "logs" {
count = var.enabled && var.cloudwatch_logs ? 1 : 0
name = "${var.function_name}-logs"
policy = data.aws_iam_policy_document.logs[0].json
}
resource "aws_iam_policy_attachment" "logs" {
count = var.enabled && var.cloudwatch_logs ? 1 : 0
name = "${var.function_name}-logs"
roles = [aws_iam_role.lambda[0].name]
policy_arn = aws_iam_policy.logs[0].arn
}
# Attach an additional policy required for the dead letter config.
data "aws_iam_policy_document" "dead_letter" {
count = var.dead_letter_config == null ? 0 : var.enabled ? 1 : 0
statement {
effect = "Allow"
actions = [
"sns:Publish",
"sqs:SendMessage",
]
resources = [
var.dead_letter_config.target_arn,
]
}
}
resource "aws_iam_policy" "dead_letter" {
count = var.dead_letter_config == null ? 0 : var.enabled ? 1 : 0
name = "${var.function_name}-dl"
policy = data.aws_iam_policy_document.dead_letter[0].json
}
resource "aws_iam_policy_attachment" "dead_letter" {
count = var.dead_letter_config == null ? 0 : var.enabled ? 1 : 0
name = "${var.function_name}-dl"
roles = [aws_iam_role.lambda[0].name]
policy_arn = aws_iam_policy.dead_letter[0].arn
}
# Attach an additional policy required for the VPC config
data "aws_iam_policy_document" "network" {
count = var.vpc_config == null ? 0 : var.enabled ? 1 : 0
statement {
effect = "Allow"
actions = [
"ec2:CreateNetworkInterface",
"ec2:DescribeNetworkInterfaces",
"ec2:DeleteNetworkInterface",
]
resources = [
"*",
]
}
}
resource "aws_iam_policy" "network" {
count = var.vpc_config == null ? 0 : var.enabled ? 1 : 0
name = "${var.function_name}-network"
policy = data.aws_iam_policy_document.network[0].json
}
resource "aws_iam_policy_attachment" "network" {
count = var.vpc_config == null ? 0 : var.enabled ? 1 : 0
name = "${var.function_name}-network"
roles = [aws_iam_role.lambda[0].name]
policy_arn = aws_iam_policy.network[0].arn
}
# Attach an additional policy if provided.
resource "aws_iam_policy" "additional" {
count = var.policy == null ? 0 : var.enabled ? 1 : 0
name = var.function_name
policy = var.policy.json
}
resource "aws_iam_policy_attachment" "additional" {
count = var.policy == null ? 0 : var.enabled ? 1 : 0
name = var.function_name
roles = [aws_iam_role.lambda[0].name]
policy_arn = aws_iam_policy.additional[0].arn
}