-
Notifications
You must be signed in to change notification settings - Fork 0
/
iam_policy.tf
103 lines (95 loc) · 2.15 KB
/
iam_policy.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
##################################################################################
# RESOURCES
##################################################################################
# IAM Role
resource "aws_iam_role" "k8s-iam-role" {
name = "k8s_iam_role"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "ec2.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_iam_policy" "k8s-iam-policy" {
name = "k8s_iam_policy"
description = "Allow K8s to start an ELB, and allocate storage."
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::kubernetes-*"
]
},
{
"Effect": "Allow",
"Action": "ec2:Describe*",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "ec2:AttachVolume",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": "ec2:DetachVolume",
"Resource": "*"
},
{
"Effect": "Allow",
"Action": ["ec2:*"],
"Resource": ["*"]
},
{
"Effect": "Allow",
"Action": ["elasticloadbalancing:*"],
"Resource": ["*"]
},
{
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets",
"route53:GetChange",
"route53:GetHostedZone",
"route53:ListHostedZones",
"route53:ListHostedZonesByName",
"route53:ListResourceRecordSets"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"acm:DescribeCertificate"
],
"Resource": "*"
}
]
}
EOF
}
resource "aws_iam_policy_attachment" "k8s-iam-policy-attachment" {
name = "k8s_iam_policy_attachment"
roles = ["${aws_iam_role.k8s-iam-role.name}"]
policy_arn = "${aws_iam_policy.k8s-iam-policy.arn}"
}
resource "aws_iam_instance_profile" "aws-iam-k8s-instance-profile" {
name = "aws_iam_k8s_instance_profile"
role = "${aws_iam_role.k8s-iam-role.name}"
}