-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathiam.tf
51 lines (45 loc) · 1 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
# Autoscaling lifecycle hook role
# Allows lifecycle hooks to add messages to the SQS queue
resource "aws_iam_role" "lifecycle_role" {
name = "${var.cluster_name}-lifecycle-hooks"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "",
"Effect": "Allow",
"Principal": {
"Service": "autoscaling.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
EOF
lifecycle {
create_before_destroy = true
}
}
# Attach policy document for access to the sqs queue
resource "aws_iam_role_policy" "lifecycle_role_policy" {
name = "${var.cluster_name}-lifecycle-hooks-policy"
role = "${aws_iam_role.lifecycle_role.id}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [{
"Effect": "Allow",
"Resource": "${var.lifecycle_hooks_sqs_queue_arn}",
"Action": [
"sqs:SendMessage",
"sqs:GetQueueUrl",
"sns:Publish"
]
}]
}
EOF
lifecycle {
create_before_destroy = true
}
}