-
Notifications
You must be signed in to change notification settings - Fork 0
/
roles.tf
45 lines (42 loc) · 1.03 KB
/
roles.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
# Create a role for the SMS Lambda to assume
resource "aws_iam_role" "lambda_iam" {
name = "${data.aws_region.current.name}-smsnotification-lambda-role"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
# Create a role for CloudWatch to assume
resource "aws_iam_role" "api_gateway_cloudwatch_role" {
name = "api-gateway-cloudwatch-logs-role"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "apigateway.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
}
# Attach the cloudwatch role
resource "aws_iam_role_policy_attachment" "api_gateway_cloudwatch_logs_policy" {
role = aws_iam_role.api_gateway_cloudwatch_role.name
policy_arn = "arn:aws:iam::aws:policy/service-role/AmazonAPIGatewayPushToCloudWatchLogs"
}