-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiam.tf
70 lines (63 loc) · 1.51 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
# iam.tf
data "aws_caller_identity" "current" {}
resource "aws_iam_role" "ec2_role" {
name = "web_app_role"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_iam_role_policy" "ec2_policy" {
name = "web_app_policy"
role = aws_iam_role.ec2_role.name
policy = jsonencode({
Version = "2012-10-17",
Statement = [
{
Effect = "Allow",
Action = [
"s3:ListBucket",
"s3:GetObject",
"s3:PutObject"
],
Resource = [
"arn:aws:s3:::ai-greeting-cards-media",
"arn:aws:s3:::ai-greeting-cards-media/*"
]
},
{
Effect = "Allow",
Action = [
"ssm:DescribeInstanceInformation",
"ssm:GetCommandInvocation",
"ssm:ListCommands",
"ssm:SendCommand",
"ssm:GetParametersByPath",
"ssm:GetParameter",
"ssm:GetParameters",
"ssm:StartSession"
],
Resource = "*"
}
]
})
}
resource "aws_iam_role_policy_attachment" "ssm_policy_attachment" {
role = aws_iam_role.ec2_role.name
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
resource "aws_iam_instance_profile" "ec2_instance_profile" {
name = "web_app_instance_profile"
role = aws_iam_role.ec2_role.name
}