-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflannel.tf
110 lines (95 loc) · 1.92 KB
/
flannel.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
resource "aws_iam_instance_profile" "flannel-profile" {
name = "Flannel"
role = "${aws_iam_role.flannel-role.name}"
}
resource "aws_iam_role" "flannel-role" {
name = "Flannel"
path = "/terraform/"
description = "Role used by Flannel to manage VPC"
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" "route-table-policy" {
name = "route-table-policy"
role = "${aws_iam_role.flannel-role.id}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action":
"*",
"Resource":
"*"
}
]
}
EOF
}
/*
resource "aws_iam_instance_profile" "lifecycle-hooks-profile" {
name = "lifecycle-hooks-policy"
role = "${aws_iam_role.lifecycle_role.name}"
}
# Autoscaling lifecycle hook role
# Allows lifecycle hooks to add messages to the SQS queue
resource "aws_iam_role" "lifecycle_role" {
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 = "lifecycle-hooks-policy"
role = "${aws_iam_role.lifecycle_role.id}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Resource": "*",
"Action": [
"sqs:SendMessage",
"sqs:GetQueueUrl",
"sns:Publish"
]
}
]
}
EOF
lifecycle {
create_before_destroy = true
}
}
*/