-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiam.tf
More file actions
33 lines (29 loc) · 753 Bytes
/
iam.tf
File metadata and controls
33 lines (29 loc) · 753 Bytes
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
resource "aws_iam_role" "ec2_role" {
name = "ec2-instance-role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Effect = "Allow"
Principal = {
Service = "ec2.amazonaws.com"
}
Action = "sts:AssumeRole"
}
]
})
}
resource "aws_iam_role_policy_attachment" "ec2_policy_attach" {
for_each = toset([
"AmazonEC2ContainerRegistryFullAccess",
"AmazonEC2FullAccess",
"AmazonS3FullAccess",
"EC2InstanceConnect",
])
role = aws_iam_role.ec2_role.name
policy_arn = "arn:aws:iam::aws:policy/${each.value}"
}
resource "aws_iam_instance_profile" "ec2_instance_profile" {
name = "ec2-instance-profile"
role = aws_iam_role.ec2_role.name
}