-
Notifications
You must be signed in to change notification settings - Fork 0
/
roles.tf
48 lines (40 loc) · 1.37 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
46
47
48
data "aws_iam_policy_document" "assume_role" {
statement {
effect = "Allow"
principals {
type = "Service"
identifiers = ["ec2.amazonaws.com"]
}
actions = ["sts:AssumeRole"]
}
}
resource "aws_iam_role" "bastion" {
name = "${var.identifier}-bastion-role"
path = "/"
assume_role_policy = data.aws_iam_policy_document.assume_role.json
}
resource "aws_iam_role" "nodes" {
name = "${var.identifier}-nodes-role"
path = "/"
assume_role_policy = data.aws_iam_policy_document.assume_role.json
}
resource "aws_iam_role_policy_attachment" "bastion_core" {
count = var.ssm ? 1 : 0
role = aws_iam_role.bastion.name
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
resource "aws_iam_role_policy_attachment" "bastion_patch" {
count = var.ssm ? 1 : 0
role = aws_iam_role.bastion.name
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMPatchAssociation"
}
resource "aws_iam_role_policy_attachment" "nodes_core" {
count = var.ssm ? 1 : 0
role = aws_iam_role.nodes.name
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"
}
resource "aws_iam_role_policy_attachment" "nodes_patch" {
count = var.ssm ? 1 : 0
role = aws_iam_role.nodes.name
policy_arn = "arn:aws:iam::aws:policy/AmazonSSMPatchAssociation"
}