-
Notifications
You must be signed in to change notification settings - Fork 0
/
iam.tf
37 lines (30 loc) · 838 Bytes
/
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
resource "aws_iam_instance_profile" "ec2_instance_profile" {
name = "locust-ec2-instance-profile"
role = aws_iam_role.ec2_role.name
}
resource "aws_iam_role" "ec2_role" {
name = "ec2-iam-role"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
Service = "ec2.amazonaws.com"
}
},
]
})
tags = {
stack = "test"
}
}
resource "aws_iam_role_policy_attachment" "attach_ssm_policy" {
role = aws_iam_role.ec2_role.name
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
resource "aws_iam_role_policy_attachment" "attach_cloud_watch" {
role = aws_iam_role.ec2_role.name
policy_arn = "arn:aws:iam::aws:policy/CloudWatchAgentServerPolicy"
}